1
我試圖實現Blueimp jQuery文件上傳 ,並有一個令人沮喪的時間使它在我的基於PHP的網站中工作。如何在PHP中使用Blueimp jQuery文件上傳器?
我的主要問題是使用AJAX。 我想要做的就是上傳後,
- 它會重定向到(比方說)
abc.php
。 - 上傳後(重定向頁面之前),我想將文件名保存到MySQL數據庫。
我知道如何用PHP處理數據庫,但不知道我不能放置我的PHP代碼。
因爲我想我需要改變main.js
$(function() {
'use strict';
// Initialize the jQuery File Upload widget:
$('#fileupload').fileupload();
// Enable iframe cross-domain access via redirect option:
$('#fileupload').fileupload(
'option',
'redirect',
window.location.href.replace(
/\/[^\/]*$/,
'/cors/result.html?%s'
)
);
// Load existing files:
$('#fileupload').each(function() {
var that = this;
$.getJSON(this.action, function (result) {
if (result && result.length) {
$(that).fileupload('option', 'done')
.call(that, null, {result: result});
}
});
});
});
感謝百萬的第一個問題..