我遇到了 ember-data 的问题。例如,我在http://localhost/~me/test创建了一个项目
在我的项目中,我创建了一个商店和一个模型,如下所示:
... init stuff here ...
var attr = DS.attr;
App.Person = DS.Model.extend({
firstName: attr('string'),
lastName: attr('string'),
});
App.Store = DS.Store.extend({
revision: 11,
adapter: DS.RESTAdapter,
});
现在,当我(在我的路线的某个地方)搜索这样的人时
var person = App.Person.find(params);
http : //localhost/persons?post_id=10被调用。这个当然不存在。我本来期望像http://localhost/~me/test/persons?post_id=10这样的东西。更好的是 http://localhost/~me/test/persons.php?post_id=10我怎样才能改变这个网址?