gpt4 book ai didi

c++ - 如何从编码的 url 创建 QUrl

转载 作者:行者123 更新时间:2023-11-30 02:52:24 25 4
gpt4 key购买 nike

我有一个包含编码 URL 的 QString,这意味着您要将其插入浏览器的 url,例如:

QString string = "http://domain.tld/index.php?some%20encoded&another%20encoded";

当我创建 QUrl 时

QUrl(string);

它随机决定什么应该编码什么不应该,在这种情况下它留下“?”和“&”解码,但再次编码百分号。因此目标 php 应用程序收到“some%20encoded”而不是“some encoded”。

这似乎是 QT 自动尝试解析“并修复”url 时的一些功能。可以通过调用禁用此功能

QUrl(string, QUrl::StrictMode);

它在 qt 5+ 中完美运行,但在 qt 4 中,尽管它可以编译,但它的行为与我没有提供 StrictMode 参数一样。如何从我自己编码的不需要进一步编码的字符串创建 url?

最佳答案

你要找的是

QUrl QUrl::fromEncoded (const QByteArray  &input ) [static]

QUrl doc

关于c++ - 如何从编码的 url 创建 QUrl,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19001108/

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