我正在使用 Joomla 的 jRoute 库,而我的控制台请求 url 是Post http://localhost/jfirst/index.php/en/hospital
我需要这种类型的控制台 urlPost http://localhost/jfirst/
function get_state(e) {
$js.ajax({
url: "<?php JRoute::_('') ?>",
type: "POST",
dataType: 'json',
data: {
'option': 'com_doctors',
'view': 'hospital',
'task': 'get_state',
'id': e
},
beforeSend: function() {
},
success: function(res) {
$js('#city').html(res.html);
},
error: function() {
alert('error');
}
});
}