MVC2 路由 +阿贾克斯==?
我正在修改一个即将完成的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设你正在使用 jquery 试试这个:
快乐并享受生活。
Assuming you are using jquery try this:
Be happy and enjoy life.
首先,我想说永远不要通过 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.