这让我很烦。我已经下载并安装了示例应用程序 hxxxs://github.com/javiervd/laravel-ember-todo 并且当我在 localhost:8000 进行工匠服务和使用站点时,一切似乎都运行良好,但如果我只是加载该站点通过应用程序目录 localhost/laravel-ember-todo/public 控制台日志立即告诉我:hxxp://127.0.0.1/todos not found 404 error I've research around but cannot find a solution to my problem .
感谢您阐明这个问题。
如果需要更多信息,我很乐意提供。
更新
我已经更新了 todo.js:
/* global App, Ember */
App.Todo = DS.Model.extend({
adapter: DS.RESTAdapter.reopen({
namespace: 'laravel-ember-todo'
}),
text: DS.attr('string'),
isCompleted: DS.attr('boolean'),
todoDidChange: function () {
Ember.run.once(this, function () {
this.get('store').commit();
});
}.observes('isCompleted', 'text')
});
但我仍然得到: 加载资源失败:服务器响应状态为 404(未找到) 127.0.0.1/laravel-ember-todo/todos 在萤火虫中说错误发生在 jquery.min.js (第 5 行)。