gpt4 book ai didi

c# - 如何为与 Mvc 中的 Controller 匹配的特定 URL 添加查询字符串?

转载 作者:太空宇宙 更新时间:2023-11-03 16:27:55 27 4
gpt4 key购买 nike

我为特定 Controller 构建了一个 url:

 var f = new System.UriBuilder( Request.Url.AbsoluteUri ) {
Path = Url.Action( "Get", "People")
};

返回

http://localhost/myApp/People/Get

很好。

向该 url 添加查询字符串的最佳方法是什么?

意思

http://localhost/myApp/People/Get?id=7

我要做的是:

string path = string.Concat(f.ToString(), "?id=3");

但我想知道是否有其他方法(比我上面提供的更好)将查询字符串附加到该 Url。

最佳答案

Url.Action( "Get", "People", new { id = 7 })

关于c# - 如何为与 Mvc 中的 Controller 匹配的特定 URL 添加查询字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11947035/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com