使用Joomla: 我的问题是当我提交按钮时,ajax将空数据数组发送回我的客户端。控制台中的Debbuging向我显示标题中的数据,但预览和响应值为空。
这是我的代码(我使用bootstrap的模态表单)。
我的默认脚本中的HTML:
<form action="<?php echo JRoute::_('index.php?option=com_addproduct&view=addproducts'); ?>" method="post" name="modalMessageForm" id="modalMessageForm" enctype="multipart/form-data">
<input type="file" id="message-image-upload" accept="image/*" style="display:none;" name="message-image-upload">
<textarea class="form-control message-textarea" id="message-textarea" placeholder="Nachricht..." name="new-message" rows="4"></textarea>
<button type="button" id="button-close-message" class="btn btn-default btn-block btn-message-close" style="display:none; margin-top:5px;"><?=JText::_( 'COM_ADDPRODUCT_MODAL_MESSAGES_CLOSE')?></button>
</form>
JQuery / Ajax:
$(document).on("submit", "#modalMessageForm", function(e)
{
var form = $('#modalMessageForm').get(0);
e.preventDefault();
var formData = new FormData(form);
for(var pair of formData.entries()) {
console.log(pair[0]+ ', '+ pair[1]);
}
$.ajax({
crossDomain: true,
type: "POST",
url: "index.php?option=com_addproduct&task=sendMessages&format=json",
data: formData,
dataType: "json",
processData: false
})
.done(function(data, textStatus, jqXHR){
console.log('Message: '+data.new-message+' PicName: '+data.img);
})
});
这是我的controller.php:
public function sendMessages()
{
JResponse::setHeader('Content-Type', 'application/json', true);
$app = JFactory::getApplication();
$input = $app->input;
$new-message = $input->getString('new-message', '', 'RAW');
$img = $_FILES['message-image-upload']["name"];
$img = JFile::makeSafe($img);
$results=array(
'new-message' => 'new-message',
'img' => $img
);
echo json_encode($results);
$app->close();
}
我在控制台日志中获得了数据/变量。
它是: new-message:null, img:null
尝试设置contentType:false会给我500错误。
非常感谢
这是我网络的信息 enter image description here
答案 0 :(得分:0)
我想出了什么。 这是我的ajax命令中的URL。 当我使用像
这样的普通网址时Name
这将有效,然后我可以设置
PowerMockito
但这不是安全问题。 我只是想用这个网址
url: 'upload.php'
但后来我收到了找不到视图的错误消息。这很奇怪。