我正在修改此代码以便在我的php网站中使用。我将代码添加到 index.php 中,但我不知道在哪里添加代码的Client-side file upload initialization:
部分?
以下是我用于将上传器插入到mysql db中的代码。
客户端文件上传初始化:
$('#fileupload').fileupload({
url: 'server/php/'
}).on('fileuploadsubmit', function (e, data) {
data.formData = data.context.find(':input').serializeArray();
});
答案 0 :(得分:1)
在文件 main.js 中为旧代码添加评论
/*
// Initialize the jQuery File Upload widget:
$('#fileupload').fileupload({
// Uncomment the following to send cross-domain cookies:
//xhrFields: {withCredentials: true},
url: 'server/php/'
});
*/
添加新代码:
$('#fileupload').fileupload({
url: 'server/php/'
}).on('fileuploadsubmit', function (e, data) {
data.formData = data.context.find(':input').serializeArray();
});