gpt4 book ai didi

javascript - 指定 URL 或 URL 根属性 - backbone.js

转载 作者:行者123 更新时间:2023-11-30 18:10:30 27 4
gpt4 key购买 nike

exports.definition = {

config : {
// table schema and adapter information
},

extendModel: function(Model) {
_.extend(Model.prototype, {
// Extend, override or implement the Backbone.Model methods
});
return Model;
},

extendCollection: function(Collection) {
_.extend(Collection.prototype, {

// Implement the comparator method.
comparator : function(book) {
return book.get('title');
}

}); // end extend

return Collection;
}
}

我应该在哪里指定 url 属性来与我的休息服务进行通信。

http://docs.appcelerator.com/titanium/latest/#!/guide/Alloy_Models

最佳答案

exports.definition = {
config: {
"columns": {
"username": "",
"password": ""
},
"defaults": {
"username": "-",
"password": "-"
},
"adapter": {
"type": "restapi",
"collection_name": "user"
}
},

extendModel: function(Model) {
_.extend(Model.prototype, {
**urlRoot**:'',
checkLogin: function(){

}
});

return Model;
},

extendCollection: function(Collection) {
_.extend(Collection.prototype, {
// Extend, override or implement Backbone.Collection
});

return Collection;
}
}

Backbone.sync 方法在创建这些类时对 Model.urlRoot 或 Collection.url 属性指定的 URL 执行 RESTful JSON 请求。您可以在 Model 或 Collection 中指定。

关于javascript - 指定 URL 或 URL 根属性 - backbone.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14701869/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com