是否有相当于 C# / .NET 的 Perl 的 URI.pm ?
.NET 具有 Uri 类。
Perl 有其 URI 模块。
主要区别在于,URI.pm 允许您以哈希形式检索查询字符串组件,并将哈希设置到 URI 中以使用查询参数构造一个漂亮的 URI。 我在 .NET 方面没有看到类似的情况。 是否有一些我不知道的隐藏课程?
.NET has the Uri class.
Perl has its URI module.
The major difference is that URI.pm allows you to retrieve the query string components as a hash, and set a hash into the URI to construct a nice URI with query arguments. I don't see anything like that on the .NET side. Is there some hidden class I don't know about?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
另一个实用程序提供了解析查询字符串的功能:System.Web。 HttpUtility.ParseQueryString() - 将查询字符串解析为 NameValueCollection。
HttpUtility 文档 中的示例:
Another utility provides for parsing query strings: System.Web.HttpUtility.ParseQueryString() - Parses a query string into a NameValueCollection.
An example from HttpUtility doc:
答案显然是“不”。 .NET 框架中没有内置类可以采用名称和值的集合并生成查询字符串,或者允许您直接修改 URI 的查询字符串组件,就像它是一个集合一样。
The answer, apparently is "No". There is no built-in class in the .NET framework that can take a collection of names and values and produce a query string or allow you to directly modify the query string component of a URI as if it were a collection.