6

http://www.objis.com/formationextjs/lib/extjs-4.0.0/docs/api/Ext.form.field.File.htmlのような私のextjsコード

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.');
                    }
                });
            }
        }
    }]
});

私の写真のupload.phpファイル

echo "{success:true}";

しかし、成功すると o.result.fileにundefinedが表示されます。成功するとファイル名が表示されると思います。
成功後にファイル名を表示するにはどうすればよいですか

4

3 に答える 3

1

有効な JSON でさえないものを返し"{success:true}"ているだけですが、ExtJS がさらに多くのデータを提供することを期待していますか?

のような JSON を返すようにしてください

{ "success": true, "file": "filename" }

クライアントが読み取ることができるファイル プロパティが結果に含まれるようにします。

于 2013-06-20T08:40:01.967 に答える
0

注: サーバーの応答タイプは「text/html」である必要があります。

return Json(new {
    success = true,
    msg = "Your file has been uploaded"
}, "text/html");

ライブデモはこちら

于 2014-02-20T12:19:22.847 に答える