私は Joomla の jRoute ライブラリを使用しています。私のコンソール要求 URL はPost http://localhost/jfirst/index.php/en/hospital
、このタイプのコンソール URL が必要なときです。Post 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');
}
});
}