-
Notifications
You must be signed in to change notification settings - Fork 10
/
todos
47 lines (30 loc) · 1.14 KB
/
todos
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
"1.1版本"(2013-07-30)
1.alter与created。alter需包含当前view,当前view更新html时触发alter,需要修改view.onprerender事件中的unmountZoneVframes,当不包含子view时,调用cAlter (done@2013-07-30)
2.MM中,修改回调,所有的回调以error开始,同nodejs
3.registerModels 判断有没有重名的model信息
4.view事件部分,是否改成:
return View.extend({
enableEvents:["click","mousedown"],
save:function(e){
}
});
还是:
return View.extend({
click_save:function(e){
}
});
或者:
return View.extend({
"save<click>":function(e){
},
"other":function(){
this.save({
});
}
})
//<a href="#!/home" mx-click="save">save</a>
5. 调用observeLocation后,如果当前view没有写locationChange,则自动生成一个刷新用的locationChange
6.modelmanager中 动态调整url,before不好使?
7.支持 ?debug&src这样的参数
8.fetchOne fetchOrder 简单处理 回调结果处理成数组(判断是否中断)
9.vframe加载与location加载,extra的处理问题