使用Joomla的jRoute库时POST URL的问题

时间:2012-06-01 05:56:01

标签: php javascript joomla

我正在使用Joomla的jRoute库,我的控制台请求网址为Post http://localhost/jfirst/index.php/en/hospital,而我需要这种类型的控制台网址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');
        }
    });
}

2 个答案:

答案 0 :(得分:0)

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

答案 1 :(得分:0)

我自己找到了问题,我使用了网址:&#34;&#34;,并且工作正常。