GET var 无法正常工作? 里面的例子

发布于 2024-07-26 12:41:42 字数 282 浏览 1 评论 0原文

这让我很头疼。 在一个函数中,我有下面的代码。 令我头疼的是我可以在 RawUrl 中看到 &id= ,它应该保存的值,同时 if 语句中的 req["id"] 返回 null

    var req = HttpContext.Current.Request;
    string u = req.RawUrl; // --> /pstcm&id=5653999025705172077
    d = null;
    if (req["id"] != null)

This is hurting my head. In a func i haave the code below. What is hurting my head is the fact i can se &id= in my RawUrl and it the value it should hold meanwhile req["id"] in the if statement returns null

    var req = HttpContext.Current.Request;
    string u = req.RawUrl; // --> /pstcm&id=5653999025705172077
    d = null;
    if (req["id"] != null)

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

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

发布评论

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

评论(1

汐鸠 2024-08-02 12:41:42

据我所知, id=... 未指定为查询字符串属性。 前面没有?。 它是 URL 路径本身的一部分。 HttpRequest 的索引器将仅考虑 cookie、表单值、查询字符串属性和服务器变量。 显然,它不能神奇地推断出任何任意定义的格式。

As far as I can see, the id=... is not specified as a querystring attribute. There's no ? before it. It's part of the URL path itself. The indexer of HttpRequest will only consider cookies, form values, querystring attributes, and server variables. Obviously, it cannot magically infer any arbitrarily defined format.

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