嘿,伙计们,这很简单——我在Adam Wulf 的网站上遇到了一个很酷的 MVC 示例,我试图了解所有不同部分如何交互......在 model.js 中,他有两种不同的使用方式*数据:*设置。有人可以解释他们两者之间的区别,也许是不同方法的一个例子?代码:
$.ajax({
url: 'ajax.php',
data : { load : true },
type: 'GET',
dataType: 'json',
timeout: 1000,
error: function(){
that.notifyLoadFail();
},
success: function(data){
loadResponse(data);
that.notifyLoadFinish();
}
});
与此示例相比:
$.ajax({
url: 'ajax.php',
data : { load : true, id : id },
type: 'GET',
dataType: 'json',
timeout: 1000,
error: function(){
that.notifyLoadFail();
},
success: function(data){
loadResponse(data);
that.notifyLoadFinish();
}
});