我路過AJAX GET參數,我的網址是這樣的:的Symfony路由AJAX get方法
example.com/autocamplete?term=string
我補充路線爲:
autocomplete:
path: /autocomplete?term={term}
defaults: { _controller: CatalogWebBundle:Default:autocomplete }
但有毛病我的路線,因爲我得到錯誤:
GET http://127.0.0.1:8000/autocomplete?term=sdfsd 500 (Internal Server Error)
如何重寫我的路由到ajax獲取patameters?
JS是:
<script type="text/javascript">
$(function() {
//autocomplete
$("#search").autocomplete({
source: "\/autocomplete",
minLength: 1
});
});
</script>
我不使用樹枝將無法正常工作,但使用PHP模板如何改寫這個''to php? – Wizard 2014-11-25 14:39:15
@TomasLiachovskis看看[這個文檔頁](http://symfony.com/doc/current/cookbook/templating/PHP.html) – xurshid29 2014-11-25 16:30:39