我正在尝试uploadfilefield
使用ExtJS4获取文件内容,但不知道如何?
我有这个代码uploadfilefield
:
{
xtype: 'fileuploadfield',
buttonText : 'Upload CSV',
buttonConfig:
{
icon: 'images/upload.png',
tooltip:
{
text: 'some hints',
width: 200
}
},
buttonOnly: true,
listeners:
{
'change': function(fb, v)
{
// v returns the filename
// HOW CAN I GET THE FILE CONTENT?
}
}
}
我在想也许fb
有内容,但alert(JSON.stringify(fb))
给了我一个关于fb
成为圆形对象的错误。
我猜必须有其他方式/事件。我还想在对话框上按打开后立即获取文件内容。我不能使用提交按钮来执行此操作。
感谢我的 StackOverflowers 伙伴 ;)
附录:
我正在查看Sencha上的这个示例:
Ext.create('Ext.form.Panel', {
title: 'Upload a Photo',
width: 400,
bodyPadding: 10,
frame: true,
renderTo: Ext.getBody(),
items: [{
xtype: 'filefield',
name: 'photo',
fieldLabel: 'Photo',
labelWidth: 50,
msgTarget: 'side',
allowBlank: false,
anchor: '100%',
buttonText: 'Select Photo...'
}],
buttons: [{
text: 'Upload',
handler: function() {
var form = this.up('form').getForm();
if(form.isValid()){
form.submit({
url: 'photo-upload.php',
waitMsg: 'Uploading your photo...',
success: function(fp, o) {
Ext.Msg.alert('Success', 'Your photo "' + o.result.file + '" has been uploaded.');
}
});
}
}
}]
});
传递给“photo-upload.php”的是什么?这个 php 应该如何获取文件的内容?