我正在使用 Sencha Touch + PHP 构建一个应用程序。
在 Sencha Touch 中,我制作了这个表格:
xtype: 'fieldset',
items: [
{
xtype: 'textfield',
id: 'ctTitle',
name: 'title',
label: 'Title'
},
{
xtype: 'filefield',
id: 'ctFile',
name: 'filePdf',
label: 'File'
}
]
在我的控制器中,有一个将文件提交到 php 的功能:
onBtnSaveFile: function(){
Ext.Ajax.request({
url: 'app-resources/scripts/saveArticle.php',
headers: {
"Content-Type": "multipart/form-data"
},
params: {
title: Ext.getCmp('ctTitle').getValue(),
filePdf: Ext.getCmp('ctFile').getValue()
},
callback: function(options, success, response) {
console.log(response.responseText);
}
});
},
现在在 saveArticle.php 中,我使用 $_FILES 查看上传文件的大小:
$pdf = $_FILES['filePdf'];
bu 这条线得到错误Undefined index: filePdf
我认为 AJAX 请求中的参数没有发送正确的数据,也许它发送的是普通字符串而不是文件。
有人可以帮我解决这个问题吗?
谢谢!