如何创建一个多根flatbuffer json文件?



如何创建一个多根flatbuffer json文件?

table Login {
name:string;
password:string;
}
table Attack {
damage:short;
}
我创建了以下json文件
{
"Login": {
"name": "a",
"password": "a",
}
}

but get error:no root type set to parse json with

root_type Login添加到模式文件的底部。如果您还想用Attack从命令行解析JSON,那么将其粘贴到自己的模式中,或者手动使用--root-type

也可参阅文档,例如https://google.github.io/flatbuffers/flatbuffers_guide_using_schema_compiler.html

相关内容

  • 没有找到相关文章

最新更新