使用ydn-dn,我想自动将我的网络应用程序中的数据与我的REST后端同步
我阅读了文档并在示例中进行了搜索,但我无法使其正常工作
https://yathit.github.io/ydn-db/synchronization.html
http://dev.yathit.com/api/ydn/db/schema.html#sync
我尝试使用这样的同步配置定义架构:
var schema = {
stores: [ {
name: 'contact',
keyPath: 'id',
Sync: {
format: 'rest',
transport: service,
Options: {
baseUri: '/'
}
}
}
]
};
并创建了一个传输函数:
var service = function(args) {
console.log("contact synch");
};
但我的服务功能从未被调用过 我当然误解了YDN-db是如何工作的,但我没有找到任何例子。
要完成,这里有一个jsfiddle: http://jsfiddle.net/asicfr/y7sL7b3j/