我正在尝试在 ajax 帖子上设置一个令牌,但没有被控制器方法识别。javascrip 看起来如下
jQuery(document).ready(function() {
jQuery('#source').change(function() {
jQuery('#fileupload').addClass('fileupload-processing');
var data = jQuery('#source option:selected').val();
jQuery.post('index.php', {
'option': 'com_tieraerzte',
'task': 'parser.importColumns',
'tmpl': 'component',
'token':'<?php echo JUtility::getToken()?>',
'app': data,
'dataType': 'html',
}, function(result) {
jQuery('td.add_column').html(result);
jQuery('button#parse.btn').show();
//edit the result here
return;
});
});
令牌正在生成并发布
在控制器中,我检查了令牌的存在,但向我抛出了 Invalid Token
控制器检查令牌
JRequest::checkToken('request') or jexit( 'Invalid Token' );