$(function() {
$
.ajax({
type : "post",
url : "1.json",
timeout : 20000,
error : function() {
alert('服务器错误');
},
async : false,
dataType : "json",
success : function(data) {
var str = "";
var str1 = "";
$("#reg-for-city").suggest(data, {
hot_list : data,
dataContainer : '#arrcity_3word',
attachObject : '#suggest'
});
}});
});
以上这段代码,如果应用在 rails 里,应该怎么写啊?是一段关于 ajax 请求数据相关的..