我正在使用以下代码将数据传递到我的Django应用程序中的视图,但是有些人无法在视图中访问它。要么我错误地传递了它,要么我试图错误地访问它,并且想知道你们是否可以帮助我。
jQuery("#garbage").load(
'/search/loadBottomLooks/',
{'pageNum':2},
function(responseText, responseStatus) {
alert('got into the callback');
}
)
查看:
pageNum = request.POST['pageNum']
谢谢!
答案 0 :(得分:5)
.load()
使用GET,$.post()
是您要发送帖子的内容:
$.post("/search/loadBottomLooks/",
{ pageNum: "2" },
function(responseText, responseStatus){
alert('got into the callback!');
$("#garbage").html(responseText);
});