gpt4 book ai didi

c# - 在 Asp.Net Core 2.x 中使用查询字符串重定向

转载 作者:太空宇宙 更新时间:2023-11-03 22:32:39 25 4
gpt4 key购买 nike

我正在使用查询字符串调用操作名称 PaymentStatus,并将查询字符串参数与我的模型绑定(bind)。

在这里。

[HttpGet("PaymentStatus")]
public ActionResult PaymentStatus([FromQuery]ResponseMsgVM res)
{
return Redirect(@"http://localhost:27089");
}

现在的问题是我想使用当前请求的查询字符串重定向到另一个 URL。

请帮帮我,我该怎么做?

最佳答案

从请求中提取当前查询字符串并包含在重定向 URL 中

[HttpGet("PaymentStatus")]
public ActionResult PaymentStatus([FromQuery]ResponseMsgVM res) {
var queryString = Request.QueryString;
//use querystring to build redirect URL

return Redirect(@"http://localhost:27089" + queryString);
}

关于c# - 在 Asp.Net Core 2.x 中使用查询字符串重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56651782/

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