0

使用 ydn-dn,我想自动将来自我的 Web 应用程序的数据与我的 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/

4

1 回答 1