如何使用jQuery在Grails页面中发出Ajax请求?
如何在Grails Controller上设置击中方法的URL?假设控制器:“机场”,动作:“ getJson”,动作的输入为“ iata”。
我能够将静态网址设置为,http://localhost:8080/trip/airport/getJson但无法弄清楚如何为iata传递输入。
http://localhost:8080/trip/airport/getJson
我对Grails并不陌生,并遵循IBM的“掌握Grails”教程系列。建议我给我一些有关将Grails与jQuery一起使用的好教程。
在jQuery中使用$ .ajax方法
$.ajax({ url:"${g.createLink(controller:'airport',action:'getJson')}", dataType: 'json', data: { iata: '.............', }, success: function(data) { alert(data) }, error: function(request, status, error) { alert(error) }, complete: function() { } });