将加密的 ID/密码从 jsp 表单发送到控制器
我有一个带有“登录”链接的jsp。单击登录后,页面顶部会出现一个 div。我需要通过 ajax 调用将我的 id\password 提交给 spring 控制器(java),然后该控制器将验证它。
此表单提交可以通过某种方式保护或加密吗? (我只能使用 javascript 来实现)
I have a jsp with a 'login' link. On click of Login, a div appears on the top of page. I need to submit my id\password through an ajax call to a spring controller (java) which will then validate it.
Can this Form Submit be secured or encrypted in some way ? (I can use only javascript for this)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要安全地提交表单,您只需将表单提交方法设置为“POST”即可。否则,您可以在 javascript 函数中创建一个新表单,例如:
如果您想发送多个字段,则可以根据需要添加更多字段。
To submit the form safely you just have to set the form submit method as 'POST'. Otherwise you can create a new form in javascript function like:
If you want to send more than one fields than add more fields according to your need.