2

ExtJS4uploadfilefieldを使用してファイルの内容を取得しようとしていますが、方法がわかりません。

私はこのコードを持っています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はどのようにファイルの内容を取得することになっていますか?

4

2 に答える 2