1

Ext.direct 的普通表单提交 n 加载,加载正常,但提交返回错误,因为在未定义的 post 数据中



var _form = Ext.create('Ext.form.Panel', {
 api: {
   submit: submit, //actions I took from code that going above, and never mind what I ll write here. Its not a problem
   load: load           
    },
    baseParams: {
        st_id: st_id,
        id: id
    },
    paramsAsHash: true,
    defaultType: 'textfield',
    buttons: [{
        text: 'Cancel',
        handler: function() {
            this.up('form').getForm().reset();
        }
    }, {
        text: 'Save',
        handler: function() {
            var values = this.up('form').getForm().getValues();
            this.up('form').getForm().submit({
                success: function() {
                    grid.getStore().load();
                }
            });
            this.up('form').getForm().reset();
        }
    }]
});

在标题中写道,内容类型是“application/json;” 但在其他情况下,它的“application/x-www-form-urlencoded”最后才有意义,对吧?它工作,但以其他形式。所有这些都在 Kohana 下,所以当我清楚地看到控制器中发生了什么时,在 Extdirect 路由器中我看到这个表单没有关于提交方法的信息。

4

1 回答 1

0

这是一个愚蠢的错误:我在定义中忘记了@formHandler

于 2013-01-21T10:27:22.380 回答