Extjs4---学习笔记,同步更新中。。。

来源:互联网 发布:光纤是如何传输数据的 编辑:程序博客网 时间:2024/04/29 02:36

1、action.result.message

用于显示后台的错误信息;

需要在后台定义message的变量

 var form = this.up('form').getForm();            if (form.isValid()) {                // Submit the Ajax request and handle the response                form.submit({                    success: function(form, action) {                       Ext.Msg.alert('Success', action.result.message);                    },                    failure: function(form, action) {                        Ext.Msg.alert('Failed', action.result ? action.result.message : 'No response');                    }                });            }

2、Ext.MessageBox.show()显示空白

在做后台管理系统时遇到的问题,在有些页面用Ext.MessageBox.show()做提示框时会显示空白,然后用的

Ext.MessageBox.alert()代替的

3、分页显示:在前台配置pageSize:5后,但在后台还是接收到的默认值25,

应该pageSize:5放在

Ext.define('HT.store.Users',{//不要忘了继承extend:'Ext.data.Store',//记得设置modelmodel:'HT.model.User',//自动加载设为trueautoLoad:true,pageSize:10,proxy: {        type: 'ajax',        url : 'user_get',        reader: {//数据格式为json            type: 'json',            root: 'users',            totalProperty:'totalCount'        }    }});
而不是放在proxy里面,不过,再次之前放在proxy也可以,用了mvc后就不管用了

原创粉丝点击