MVC ActionResult 和 QueryString

发布于 2024-08-04 14:20:49 字数 575 浏览 5 评论 0原文

我对 QueryStrings 和 ActionResult 有点困惑

我有一个来自 jQuery 的 URL:

url: "/ToBePaid/Receipt/" + $(this).attr('value') + "&receipt=" + $ (this).attr('checked')

生成

/ToBePaid/Receipt/28cb8260-d179-450f-b9c4-162f1cc45bbd&receipt=true

,我的 ActionResult 如下:

public ActionResult ReceiptExpenseForGrouping(string id, stringreceipt)

以及我的内容我得到的是

id = "28cb8260-d179-450f-b9c4-162f1cc45bbd&receipt=true" 收据 =“true”= null

但我想要的是

id =“28cb8260-d179-450f-b9c4-162f1cc45bbd” 收据=“true”

请有人帮我吗?

I'm a little puzzled with QueryStrings and ActionResult

I have a URL coming in from jQuery as:

url: "/ToBePaid/Receipt/" + $(this).attr('value') + "&receipt=" + $(this).attr('checked')

which generates

/ToBePaid/Receipt/28cb8260-d179-450f-b9c4-162f1cc45bbd&receipt=true

and my ActionResult is as follows:

public ActionResult ReceiptExpenseForGrouping(string id, string receipt)

and what I am getting is

id = "28cb8260-d179-450f-b9c4-162f1cc45bbd&receipt=true"
receipt = "true" = null

But what I want is

id = "28cb8260-d179-450f-b9c4-162f1cc45bbd"
receipt = "true"

Please help me out here someone?

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

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

发布评论

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

评论(1

混浊又暗下来 2024-08-11 14:20:49
url: "/ToBePaid/Receipt/" + $(this).attr('value') + "/?receipt=" + $(this).attr('checked')

应该能解决问题,

仁慈,

url: "/ToBePaid/Receipt/" + $(this).attr('value') + "/?receipt=" + $(this).attr('checked')

Should do the trick,

Kindness,

Dan

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