0

私は 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');
        }
    });
}
4

2 に答える 2

0

使ってみて<?php JRoute::_('index.php') ?>

于 2012-06-01T08:14:07.380 に答える
0

私は自分でクエリを見つけました。url: "" を使用しましたが、正常に動作しています。

于 2012-06-01T10:41:46.417 に答える