我正在根据控制台获取 JSON,但我不断收到此错误,
Assertion failed: Your server returned a hash with the key 0 but you have no mapping for it
而这个错误,
TypeError {} "Cannot call method 'toString' of undefined"
这是一个示例 JSON 响应,
[{"id":"1","last_name":"Solow","first_name":"Jeanne","suffix":null,"expiration":"2013-11-15","email":"jeanne_s@earth.com","street":"16 Ludden Dr.","city":"Austin","state":"TX","zip":"33347","phone":"964-665-8735","interests":"Great Depression,Spanish-American War,Westward movement,Civil Rights,Sports"}, {etc..}
这是我的 app.js,
App = Ember.Application.create({});
App.Store = DS.Store.extend({
revision : 12,
adapter : DS.RESTAdapter.extend({
url : 'http://ankur1.local/index.php/api/example/users/format/json',
dataType : 'jsonp',
})
});
App.IndexRoute = Ember.Route.extend({
renderTemplate : function() {
this.render('myTemplate', {
controller : 'Index'
});
},
model : function() {
return App.myTemplate.find();
}
});
App.IndexController = Ember.Controller.extend({
user : Ember.Object.create({
name : ""
}),
userNameBinding : Ember.Binding.oneWay("this.user.name"),
clickButton : function(name) {
if ($("#name").val().trim().length === 0) {
alert("text box is empty");
} else {
}
}
});
App.myTemplate = DS.Model.extend({
id : DS.attr('int'),
last_name : DS.attr('string'),
first_name : DS.attr('string'),
suffix : DS.attr('string'),
expiration : DS.attr('date')
});
需要注意的一点是,我在后端使用了 Phil Sturgeon 的 Codeigniter RestServer 库。我的代码可能有什么问题还是后端有问题?