嗨,我刚刚开始使用 javascriptMVC (JqueryMX) 编写教程我有一个错误“未捕获的类型错误无法调用未定义的方法‘模型’”我检查了所有路径,但不明白为什么它仍然无法正常工作。任何帮助都会非常有用。下面的 todo.js
steal('jquerypp/class',
'jquerypp/controller',
'jquerypp/model',
'jquerypp/view/ejs',
'jquerypp/dom/fixture',
function($){
$.Model('Todo',
{
findAll : "GET /todos",
findOne : "GET /todos/{id}",
create : "POST /todos",
update : "PUT /todos/{id}",
destroy : "DELETE /todos/{id}"
},{})
});