如何在razor中分割url路径
我的图像网址路径如下:
http://localhost:3810/images/test.png
我正在寻找的是分割路径并获取路径,例如:/images/test.png 使用剃刀。
任何帮助或建议将不胜感激
I have got image url path like :
http://localhost:3810/images/test.png
What I am looking is to split the path and just get the path for instance : /images/test.png
using razor.
Any help or suggestion will be appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以像这样使用 Uri 类:
path
变量将为/content/images/thumbs/0000019.png
。You can use the Uri class like this:
The
path
variable will be/content/images/thumbs/0000019.png
.