我正在使用 Google App Engine 开发应用程序,并且我想使用 AJAX 调用来执行 Python 脚本。我可以检索脚本,但无法执行它。
我会使用 WSGI,如下所示: How do you execute a server-side Python script using jQuery? . 但是,我不希望我的页面重定向,并且我保持页面不重定向的解决方案是使用此处建议的 AJAX 调用:Run CGI application without redirecting from HTML和此处:Make a tag act like input button。
现在我使用 HTML 表单,但我想阻止它重定向页面。
<form action="/token" method="post" >
<div> "some button code" </div>
</form>
所以我一直在尝试改用 AJAX,但它返回代码而不执行它
$.post('js/mailToken.py', { testdata: 'hello world' },alert("success"));