gpt4 book ai didi

c# - Uri 类 (.NET) 中的奇怪行为

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

为什么 Uri 类对我发送给它的构造函数的 url 进行 urldecode,我该如何防止这种情况发生?

示例(查看查询字符串值“options”):

    string url = "http://www.example.com/default.aspx?id=1&name=andreas&options=one%3d1%26two%3d2%26three%3d3";
Uri uri = new Uri(url); // http://www.example.com/default.aspx?id=1&name=andreas&options=one=1&two=2&three=3

更新:

// ?id=1&name=andreas&options=one%3d1%26two%3d2%26three%3d3
Request.QueryString["options"] = one=1&two=2&three=3

// ?id=1&name=andreas&options=one=1&two=2&three=3
Request.QueryString["options"] = one=1

这是我的问题:)

最佳答案

究竟是为什么?您可以使用 url.AbsoluteUri

获取编码版本

编辑

Console.WriteLine("1) " + uri.AbsoluteUri);
Console.WriteLine("2) " + uri.Query);

OUT:
1) http://www.example.com/default.aspx?id=1&name=andreas&options=one%3d1%26two%3d2%26three%3d3
2) ?id=1&name=andreas&options=one%3d1%26two%3d2%26three%3d3

关于c# - Uri 类 (.NET) 中的奇怪行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8325606/

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