在 AJAX 中使用 .post() 方法将数据发布到另一个 URL
我创建了一个 web.py URL,它只提供了 2 个文本框(没有提交按钮)。当我在第一个文本字段中输入数字时,它应该将该值发布到另一个 URL 中。通过使用 AJAX post()
我想将数据发布到第二个 URL。第二个 URL 应该返回我发布的数据,并且它应该显示在第二个文本框中。如何使用 key up 函数和 AJAX post()
方法解决这个问题?我已经尝试了很多 post()
方法,但找不到合适的解决方案。
I have created a web.py URL,and it provides only 2 text boxes(No submit button). When I type a number in the first text field it should post the value into another URL. By using AJAX post()
I want to post the data to the second URL. The second URL should return the data that I have posted, and it should display inside the second text box. How can I solve this problem by using key up function and AJAX post()
method? I have tried a lot with post()
method, but I couldn't find a proper solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我已经找到了解决方案,感谢所有建议,我已在此处附加了完整的代码以及建议的更改。
I have found the solution,Thanks for all the suggestions,i have attached my complete code here with the suggested changes.
试试这个
Try this
你能发布你到目前为止所拥有的吗?这看起来非常直接......
示例:
Shankar 击败了我......它的答案基本上相同,只是确保你也绑定了更改事件,并处理任何错误。
Could you post what you have so far? this seems pretty straigth forward..
example:
Shankar beat me to it... its basically the same answer just make sure you bind the change event also, and handle the any errors.