我有以下 Ajax 方法,如何在 Scala 模型文件上传递参数,我已经用谷歌搜索了它但没有使用
$('#application').on('change', function(){
var x = document.getElementById("application");
var status = x.options[x.selectedIndex].value;
var y = document.getElementById("clg");
var clg = y.options[y.selectedIndex].value;
$.ajax({
url:"/getApp?application="+status+"&clg="+clg,
success:function(result){
$.map(result,function(obj, i){
**var numbers = obj.values**
$('#table_for_list').append('@if(models.sample.app.getAll**('+ numbers +')** == 0) { ---- } else { --- }')
(OR)
$('#table_for_list').append('@if(models.sample.app.getAll**(\''+ numbers +'\')** == 0){ ---- } else { --- }')
});
}
});
});
有人可以给我几点来纠正传递参数的语法吗?