Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Baqend 中有一个字段类型 JsonObject。如何使用它的 SDK 保存数据?
您必须将该字段设置为您的 JsonObject。例如:
let obj = new DB.Test(); obj.json = { "foo": "bar" }; obj.save();