字典问题的汇总

发布于 2024-09-06 17:07:20 字数 282 浏览 4 评论 0原文

我正在使用 ASP.NET MVC2,我想根据 HtmlHelper 扩展内地址栏中的当前 URL 来创建一个 url。到目前为止我有这个:

url = helper.ViewContext.RequestContext.RouteData.Values
      .Aggregate<KeyValuePair<String, Object>>((w, next) => w +  next);

但这不能编译。有人对如何解决这个聚合函数有好主意吗?

I am using ASP.NET MVC2 and I would like to make up a url based on the current one in the address bar inside a HtmlHelper extension. So far I have this:

url = helper.ViewContext.RequestContext.RouteData.Values
      .Aggregate<KeyValuePair<String, Object>>((w, next) => w +  next);

But that does not compile. Anyone has a good idea on how to solve this Aggregate function?

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

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

发布评论

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

评论(1

请止步禁区 2024-09-13 17:07:20

使用这个:

helper.ViewContext.RequestContext.RouteData.Values
                .Select(x => x.Value.ToString())
                .Aggregate((c, next) => c + next);

但是既然你想要像 url 这样的东西,我建议你使用这个:

helper.ViewContext.RequestContext.RouteData.Values
                .Select(x => x.Value.ToString())
                .Aggregate((c, next) => c + "/" + next);

Grz,Kris。

Use this:

helper.ViewContext.RequestContext.RouteData.Values
                .Select(x => x.Value.ToString())
                .Aggregate((c, next) => c + next);

But since you want something like a url I suggest you use this:

helper.ViewContext.RequestContext.RouteData.Values
                .Select(x => x.Value.ToString())
                .Aggregate((c, next) => c + "/" + next);

Grz, Kris.

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