store.sync()是否有回调?
我正在尝试:
store.sync(function(){
alert('1');
});
但它不起作用。 这家商店是一家当地商店。
答案 0 :(得分:1)
sync()没有'回调'。为了实现此行为,您需要监听商店的写入事件。检查this solution。
答案 1 :(得分:0)
您可以尝试:
store.sync({
callback: function (records, operation) {
alert('1');
}
});
答案 2 :(得分:0)
有听取成功事件的方法
store.on('write', function(){
alert('ready');
});
store.sync();
只要通过配置的代理成功写入,就会触发 write