如何创建一个多根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