从早上起我就一直为此头疼,但无法让它发挥作用。基本上,我想做的是在 html 页面中单击“发送”后,帐号(它是文本字段中的值)应该发送到我的 python 脚本。现在,如何在我的 python 脚本中访问传递的帐号。我正在使用django。
这是来自 html 页面的 ajax 调用:
$('#b2').click(function() {
$.ajax({
url : "../../cgi-bin/testjson.py",
type : "post",
datatype : "json",
data : {
ac_number : $("#account_number").val()
},
success : function(response) {
var handle = document.getElementById("displaytext");
handle.innerHTML += '<p> Button clicked</p>';
handle.innerHTML += '<p> Value received is: </p>' + response.data[0];
}
});
});