Итак, у меня возникли проблемы с указателем в Parse Server. У меня есть таблица, которая соединяет две другие таблицы с указателями.Javascript с Parse: Ошибка 111 ожидаемого указателя, но получил [object Object]
Пример:
var table1id //ID of the first table
var table2id //ID of the second Table
var Example = Parse.Object.extend('example_table');
function add_newExample(table1id, table2id) {
var example = new Example();
example.set('table1_id', table1id);
example.set('table2_id', table2id);
example.save(null, {
success: function() {
console.log('New object created');
},
error: function (error) {
console.log('Failed to create new object');
}
})
}
Ошибка:
code: 111
error: "schema mismatch for example_table.table1id; expected Pointer but got [object Object]"
О, черт возьми, это не проблема. Это происходит, когда я вставляю его здесь. –