良い一日!私はajaxなしでextjsフォームを送信して、次のページに結果を表示しようとしています。これは私のコードです:
Ext.define('test.from', {
extend: 'Ext.form.Panel',
alias: 'widget.test.form',
initComponent: function () {
var me = this;
Ext.apply(this, {
frame: true,
bodyPadding: 7,
border: 0,
items: [{
xtype: 'textfield',
fieldLabel: 'First Name',
name: 'contact_attr'
}, {
xtype: 'textfield',
fieldLabel: 'Last Name',
name: 'contact_attr'
}],
buttons: [{
text: 'Send',
handler: function () {
me.getForm().submit({
url: '/salary/public/auth/',
standardSubmit: true,
method: 'POST'
});
}
}]
});
しかし、他のページへのリダイレクトは発生せず、エラーが発生します:You're trying to decode an invalid JSON String
。誰か助けてもらえますか?ありがとうございました!