如何在MVC3中使用https生成绝对url?
我正在使用 MVC3 并尝试从 https 提供内容,问题是当我调用 Url.Content 时,文件仍然使用相对 url 从 http 提供。我认为这个问题已在 MVC3 中解决,但我似乎找不到任何解决方案。有谁知道这个问题是否在 MVC3 中本质上得到解决以及如何实现它,或者我是否需要创建自己的辅助方法来基于协议生成绝对 URL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用 VirtualPathUtility.ToAbsolute 实现自己的解决方案。可能是这样的:
您会使用如下:(
我自己没有对此进行测试,请随意尝试以使其正常工作。)
这有助于您为内容文件生成绝对 URL。为了更改生成的 URL 的方案,您可以创建一个附加的扩展方法来操作给定 URL 的方案,使它们成为 HTTPS 或其他形式。
正如 Khalid 在评论中指出的那样,您可以使用的各种开源项目中已经提供了类似的扩展方法(只要许可证允许)。可以找到一个示例 此处。
You can probably implement your own solution using VirtualPathUtility.ToAbsolute. Probably something like this:
which you would use like:
(Didn't test this myself, feel free to play around to make it work right.)
This helps to you to generate absolute URLs for your content files. In order to change the scheme of the resulting URLs, you can create an additional extension method that manipulates the scheme of the given URLs so that they are HTTPS, or something else.
As Khalid points out in the comments, similar extension methods are already available in various open-source projects which you can make use of (given that the license permits). An example one can be found here.
不使用扩展方法或对协议进行硬编码的解决方案,如@BlackTigerX所建议:
如以下文章中所建议:http://captaincodeman.com/2010/02/03/absolute-urls-using-mvc-without-extension-methods/
A solution that doesn't use extension methods or hardcode the protocol, as suggested by @BlackTigerX:
as suggested in the following article: http://captaincodeman.com/2010/02/03/absolute-urls-using-mvc-without-extension-methods/
您可以使用 Url.RouteUrl,一些重载采用协议参数,看起来像这样:
看看重载,看看您可以使用哪一个
You can use Url.RouteUrl, some of the overloads take a protocol parameter, looks something like this:
Take a look a the overloads and see which one you can use
如果您不想“构建”网址而只想获取当前页面的完整路径,那么这将达到目的
Context.Server.UrlEncode(Context.Request.Url.AbsoluteUri)
I知道它不如扩展方法那么优雅,但考虑出于教育目的共享它
If you don't want to "build" the url and just want the full path of the current page, this will do the trick
Context.Server.UrlEncode(Context.Request.Url.AbsoluteUri)
I know it's not as elegant as an Extension Method but thought of sharing it for educational purposes