0

我正在使用 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');
        }
    });
}
4

2 回答 2

0

尝试使用<?php JRoute::_('index.php') ?>

于 2012-06-01T08:14:07.380 回答
0

我自己找到了问题,我使用了 url:“”,并且工作正常。

于 2012-06-01T10:41:46.417 回答