Backbone Model缺少url param ...没有

时间:2013-11-25 15:30:39

标签: jquery backbone.js chaplinjs

我正在尝试将模型与服务器同步。不幸的是,尽管在模型上设置了urlrootUrl,我仍然没有指定 url属性

毋庸置疑,我可以使用此模型model.fetch()(GET),但在尝试发布时,我突然失去了网址

>>> model = window.mod
ClientSchema { cid="c2", attributes={...}, _changing=false, more...}
>>> model.url
"http://localhost:8080/mp/add"
>>> model.urlRoot
"http://localhost:8080/mp/add"
>>> model.set({test:2})
ClientSchema { cid="c2", attributes={...}, _changing=false, more...}
>>> model.sync()
Error: A "url" property or function must be specified
urlError()vendor.js 
Backbone.sync()vendor.js 
.sync()vendor.js 
throw new Error('A "url" property or function must be specified');

模型

# coffeescript
# Chaplin.Model just extends Backbone.Model
module.exports = class ClientSchema extends Chaplin.Model
    url: 'http://localhost:8080/mp/add'
    urlRoot:'http://localhost:8080/mp/add'

Model.sync

>>> model.sync.toString()

"function () {
      return Backbone.sync.apply(this, arguments);
    }"    

1 个答案:

答案 0 :(得分:2)

如果您没有覆盖默认的同步方法。您需要传递模型或网址。

这是原始同步:

Backbone.sync = function(method, model, options) {
...
  if (!options.url) {
    params.url = _.result(model, 'url') || urlError();
  }
...
}

当你调用model.sync()时,你没有传递任何东西。