目前我正在开发一个自定义模块,其中包含一个表单并提交了“通过”ajax。
字段
<input type="file" id="file" name="file" accept="image/*" disabled="disabled" />
ajax submit(与json)
$.ajax({
type: "POST",
url: "modules/mod_custom_form/submit_form.php",
data: dataString,
dataType: "JSON",
timeout: 6000,
success: function(response) {
// on success
if (response.success === 1) {
$('#customForm').html("<div id='message'></div>");
$('#message').html("<h2>Form sent!</h2>")
.append("<p>More text.</p>")
.hide()
.fadeIn(1500, function() {
$('#message').append("<img id='checkmark' src='modules/mod_custom_form/images/check-icon.png' />");
});
}
// on failure
else {
$('#customForm').html("<div id='message'></div>");
$('#message').html("<h2>Failure.</h2>");
}
}
});
submit_form.php文件
// no direct access
define('_JEXEC', 1);
define( 'DS', DIRECTORY_SEPARATOR );
define( 'JPATH_BASE', $_SERVER[ 'DOCUMENT_ROOT' ] );
require_once( JPATH_BASE . DS . 'includes' . DS . 'defines.php' );
require_once( JPATH_BASE . DS . 'includes' . DS . 'framework.php' );
require_once( JPATH_BASE . DS . 'libraries' . DS . 'joomla' . DS . 'factory.php' );
$mainframe =& JFactory::getApplication('site');
// sender email
$email = 'maarten@mail.com';
$subject = 'Aanvraag';
// create the header array
$headers = array();
$headers[] = "MIME-Version: 1.0";
$headers[] = "Content-type: text/html; charset=iso-8859-1";
$headers[] = "From: beheer <maarten@mail.com>";
$headers[] = "Bcc: beheer <maarten@mail.com>";
$headers[] = "Reply-To: Recipient Name <receiver@domain3.com>";
$headers[] = "Subject: {$subject}";
$headers[] = "X-Mailer: PHP/" . phpversion();
// get all posted data and put them in variables
$bedrijfsnaam = $_POST['bedrijfsnaam'];
$_FILES = $_POST['uploaded_file'];
// create the full message
$message = 'email';
// send mail
if (mail($to, $subject, $message, implode("\r\n", $headers))) {
//save file function
getInput($_FILES);
// return message
echo json_encode(array('success' => 1));
// insert the email into the database
$database =& JFactory::getDBO();
$query = "INSERT INTO #__email_forms (mid, email, message) VALUES ('2', 'myemail@mail.com', '$message')";
$database->setQuery($query);
$database->query();
}
else {
echo json_encode(array('success' => 0));
}
如何实现上传文件并使用ajax保存表单的可能性?我一直在寻找好几个小时,但到目前为止还没有找到任何有用的东西。
提前感谢您的建议。
答案 0 :(得分:3)
Ajax上传文件是一件很棘手的事情,特别是如果您涉及会话数据以确保实际允许用户上传。当它是公共上传时会变得更加危险,因为您需要进行更多的服务器端验证。
我通常用于ajax上传的是valums的Ajax文件上传器:https://github.com/valums/file-uploader
开始运行非常简单,它有一个jQuery插件,以使它更简单(因为你已经在使用jQuery)。