您好我刚刚开始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}"
},{})
});
答案 0 :(得分:0)
顺便说一句,steal.js应该放在html文件中,其他所有文件都可以放在主js文件中。