如何在razor中分割url路径

发布于 2024-12-10 12:52:12 字数 154 浏览 0 评论 0原文

我的图像网址路径如下:

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 技术交流群。

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

发布评论

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

评论(1

呆萌少年 2024-12-17 12:52:12

您可以像这样使用 Uri 类:

@{
    Uri uri = new Uri("http://localhost:3810/content/images/thumbs/0000019.png");
    string path = uri.PathAndQuery;
}

path 变量将为 /content/images/thumbs/0000019.png

You can use the Uri class like this:

@{
    Uri uri = new Uri("http://localhost:3810/content/images/thumbs/0000019.png");
    string path = uri.PathAndQuery;
}

The path variable will be /content/images/thumbs/0000019.png.

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