2014-01-23 142 views
1

我有問題與jQuery UI自動完成。在我的平臺網址islike這樣的:jQuery UI自動完成GET更改

mysystem /模塊/動作/現金/參數/值

但在jQuery的自動完成功能,當我設置源: 「搜索」,urlis像:

mysystem /模塊/動作/搜索?項=氮雜

,所以我想改變我的URL格式(liberary jQuery的自動完成mayby小的變化)或缺失G ET方法和發送數據POST方法。

謝謝,我修復:

源:功能(REQ,RESP){$ .getJSON(link_ajax + 「/術語/」 + encodeURIComponent方法(req.term)); }

回答

1

查看source選項。您可以使用功能版本來精確控制請求的外觀:

source: function (request, response) { 
    $.ajax({ 
     url: 'mysystem/module/action/search/' + encodeURIComponent(request.term), 
     dataType: "json", 
     type: "GET", 
     success: function (data) { 
      //note - you may need to translate the data into a format the plugin can use 
      response(data); 
     } 
    }); 
}