0
根據後端API:https://docs.typo3.org/typo3cms/CoreApiReference/JavaScript/Ajax/Backend/Index.html我可以使用每個庫在TYPO3後端執行AJAX調用。TYPO3後端:使用jQuery的AJAX(參數爲空)
我得到了成功的消息,但我的參數數組總是空:
控制器
public function renderShowModal($params = array(), \TYPO3\CMS\Core\Http\AjaxRequestHandler &$ajaxObj = NULL){
var_dump($params);
}
jQuery的
$.ajax({
type: 'POST',
url: TYPO3.settings.ajaxUrls['Controller::renderShowModal'],
data: {
"test": "bar"
},
success: function (result) {
console.log(result);
},
error: function (error) {
console.log(error);
}
});
我缺少什麼或者我該怎麼辦必須發送我的數據?
它甚至不工作是這樣的:
{"tx_ext_bm[test]": "bar"}
在此先感謝
TYPO3 Backend中沒有人能提供jQuery Ajax的工作示例嗎? – TheFlame