0

我已将表单数据编码为 JSON。这已通过以下 ExtJS 存储配置实现:

Ext.define('XXX.store.Registration', {
    extend: 'Ext.data.Store',
    model: 'XXX.model.Registration',
    autoLoad: true,
    pageSize: 15,
    autoLoad: {
        start: 0,
        limit: 15
    },

    proxy: {
        type: 'ajax',
        api: {
            create: './server/registration/create.php',
            read: './server/registration/get.php',
            update: './server/registration/update.php',
            destroy: './server/registration/destroy.php'
        },
        reader: {
            type: 'json',
            root: 'registrations',
            successProperty: 'success'
        },
        writer: {
            type: 'json',
            writeAllFields: true,
            encode: true,
            root: 'registrations'
        }
    }

});

我的服务器端代码已在 PHP 中实现。我可以通过使用字段名称作为键来访问编码的表单字段,如下所示:

$reg  = $_REQUEST['registrations'];

$data = json_decode(stripslashes($reg));

$registerNum = $data->registerNum;
$folioNum = $data->folioNum;

我表单中的一个字段是fileuploadfield. 如何从上传的 JSON 访问上传的文件。任何帮助将不胜感激。

4

0 回答 0