我通常使用 $.ajax 将数据发送到 URL 中的方法。经过一番搜索,我发现我可以检索结果数据。我看错了吗?我需要一个正确的解释它的用途,拜托。
另外,如果我想检索比“数据:”字段中的数据更多或不同的数据,我该怎么办?“上下文:”字段有什么用?
$.ajax({
url: getById,
type: 'POST',
context: document.body,
async: false,
data: {
id : id.val(),
name : name.val()
},
success:function(data) {
// do something with the retrieved data
}
});