フォームパネルを生成するスクリプトがあります。
var form = new Ext.FormPanel({
id: 'form-exploit-zombie-' + zombie_ip,
formId: 'form-exploit-zombie-' + zombie_ip,
border: false,
labelWidth: 75,
formBind: true,
defaultType: 'textfield',
url: '/ui/modules/exploit/new',
autoHeight: true,
buttons: [{
text: 'Execute exploit',
handler: function () {
var form = Ext.getCmp('form-exploit-zombie-' + zombie_ip);
form.getForm().submit({
waitMsg: 'Running exploit ...',
success: function () {
Ext.beef.msg('Yeh!', 'Exploit sent to the zombie.')
},
failure: function () {
Ext.beef.msg('Ehhh!', 'An error occured while trying to send the exploit.')
}
});
}
}]
});
次に、同じスクリプトがサーバーからjsonファイルを取得します。このファイルは、フォームに含める必要のある入力フィールドの数を定義します。次に、スクリプトはこれらのフィールドをフォームに追加します。
Ext.each(inputs, function(input) {
var input_name;
var input_type = 'TextField';
var input_definition = new Array();
if(typeof input == 'string') {
input_name = input;
var field = new Ext.form.TextField({
id: 'form-zombie-'+zombie_ip+'-field-'+input_name,
fieldLabel: input_name,
name: 'txt_'+input_name,
width: 175,
allowBlank:false
});
form.add(field);
}
else if(typeof input == 'object') {
//input_name = array_key(input);
for(definition in input) {
if(typeof definition == 'string') {
}
}
} else {
return;
}
});
最後に、フォームがインターフェイスの適切なパネルに追加されます。
panel.add(form);
panel.doLayout();
私が抱えている問題は、ボタンをクリックしてフォームを送信すると、サーバーに送信されたhttpリクエストにフォームに追加されたフィールドが含まれていないことです。言い換えれば、私はそれらのフィールドをサーバーに投稿していません。
誰もがなぜそしてどのようにそれを修正できるか知っていますか?