将加密的 ID/密码从 jsp 表单发送到控制器

发布于 2024-12-06 20:00:49 字数 157 浏览 0 评论 0原文

我有一个带有“登录”链接的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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

素罗衫 2024-12-13 20:00:49

要安全地提交表单,您只需将表单提交方法设置为“POST”即可。否则,您可以在 javascript 函数中创建一个新表单,例如:

function toPost(getString) 
{
     // create form element

        var newForm = document.createElement("form"); 
        newForm.action = <url to post data>;
        newForm.method = 'POST'; 

    // Hidden field to be send   
        var newH = document.createElement("input");

   // set any desired name here

        newH.name = <name to be set>; 
        newH.type = 'hidden'; 
        newH.value = <value to post>;
        newForm.appendChild(newH);
        newForm.submit();
}

如果您想发送多个字段,则可以根据需要添加更多字段。

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:

function toPost(getString) 
{
     // create form element

        var newForm = document.createElement("form"); 
        newForm.action = <url to post data>;
        newForm.method = 'POST'; 

    // Hidden field to be send   
        var newH = document.createElement("input");

   // set any desired name here

        newH.name = <name to be set>; 
        newH.type = 'hidden'; 
        newH.value = <value to post>;
        newForm.appendChild(newH);
        newForm.submit();
}

If you want to send more than one fields than add more fields according to your need.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文