我正在保存一个我称之为动作的对象 Parse.com
我收到以下错误:
111 invalid type for key bookPointer, expected *Book, but got string
我使用的代码是:
action.set("bookPointer", "SPecEgZUhL");
action.save(null, {
success: function (data) {
// The object was saved successfully.
callback(true);
},
error: function (data,error) {
// The save failed.
// error is a Parse.Error with an error code and description.
console.log("Error: " + error.code + " " + error.message);
callback(false);
}
});
我的书数据看起来像:
如何获得指向我的书的指针,我的 *book 在 javascript 中?
对我来说,它应该与 objectId 一起正常工作。
谢谢!