MVC2 路由 +阿贾克斯==?

发布于 2024-10-09 11:02:24 字数 332 浏览 1 评论 0原文

我正在修改一个即将完成的 mvc2 应用程序,我有一些 ajax 请求,最终看起来很像

www.host.com/site/controller/action?UserName=asdf&UserPassword=asdfasdf&Email=asd%40df.com&PhoneNumber =541-345-5433&CompanyName="sdf"

所以我的问题是(如果可能的话)我如何才能将重定向上的ajax url屏蔽为.. /controller/action,我感觉我用ajax打破了模式我被讨厌的 URL 困住了。

有没有 mvc2 专家愿意澄清一下?

Im touching up an mvc2 application thats nearly complete, I have some ajax requests that end up looking alot like

www.host.com/site/controller/action?UserName=asdf&UserPassword=asdfasdf&Email=asd%40df.com&PhoneNumber=541-345-5433&CompanyName="sdf"

So my question is how (if possible) can I mask the ajax url on the redirect to simply be.. /controller/action, Im getting the feeling I broke pattern with my ajax and am stuck with nasty URLS.

any mvc2 gurus out there willing to clarify?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

泛滥成性 2024-10-16 11:02:24

假设你正在使用 jquery 试试这个:

<前><代码>$.ajax({
url: '/控制器/动作';,
数据: {
用户名:'asdf',
用户密码:'asdfasdf',
电子邮件:'asd%40df.com',
电话号码: '541-345-5433',
公司名称:'sdf'
},
成功:函数(请求,状态,错误){
更新成功();
},
错误:函数(请求,状态,错误){
更新失败(错误);
}
});

快乐并享受生活。

Assuming you are using jquery try this:

$.ajax({
    url: '/controller/action';,
    data: {
        UserName: 'asdf',
        UserPassword: 'asdfasdf',
        Email: 'asd%40df.com',
        PhoneNumber: '541-345-5433',
        CompanyName: 'sdf'
    },
    success: function(req, status, error) {
        updateSucceeded();
    },
    error: function(req, status, error) {
        updateFailed(error);
    }
});

Be happy and enjoy life.

毅然前行 2024-10-16 11:02:24

首先,我想说永远不要通过 URL 变量发送密码。即使您使用 HTTPS,它们也是完全可嗅探的。

First things first, I would say never send a password through a URL variable. They're totally sniffable even if you're using HTTPS.

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