ExtJs 4.2、ファイルアップロードは、指定されたURLに提出できません.
1373 ワード
ExtJs 4.2、ファイルアップロードは、指定されたURLに提出できません.ブラウザでJSをデバッグしたら、総報告は以下のような間違いがあります.
Uncagt NotFoundError:Failed to execute'apendChild'on'Node':The new child element is null.
私のJSコードは以下の通りです.
Uncagt NotFoundError:Failed to execute'apendChild'on'Node':The new child element is null.
私のJSコードは以下の通りです.
items : [ {
xtype : 'textfield',
inputType : 'file',
///id : ...
} ]
は引き続きブラウザで調整して追跡します.//ext-all-dev.js:124759L
isFileUpload: function() {
return this.inputType === 'file'; // true
},
//ext-all-dev.js:121545L
// Special handling for file upload fields: since browser security measures prevent setting
// their values programatically, and prevent carrying their selected values over when cloning,
// we have to move the actual field instances out of their components and into the form.
len = uploadFields.length;
for (i = 0; i < len; ++i) {
el = uploadFields[i].extractFileInput(); // null
formEl.appendChild(el); // :Uncaught NotFoundError
uploadEls.push(el);
}
//ext-all-dev.js:123915L
extractFileInput: function() {
return null;
},
で調べたところ、filefieldのextractFileInputはnullではないことが分かりました. items : [ {
xtype : 'filefield',
///id : ...
} ]
問題解決!