NSURL 在发送 JSON 服务请求时返回 null?

发布于 2024-10-09 02:03:37 字数 405 浏览 3 评论 0原文

我的网址是 http://sample_domain/sample.json?{ "language" : "en", "category" : "sports"}

我将其转换为 NSURL 对象,如下所示。

NSURL *url=[NSURL URLWithString:@"http://sample_domain/sample.json?{ "language" : "en", "category" : "sports"}"];

它返回 nil 到 NSURL 对象,我知道 URL 应该采用苹果文档中的特定格式,否则它将被视为恶意软件站点并返回 nil 对象,

我的问题是如何使用苹果标准传递这些参数,以便它不会返回 nil 对象。

提前致谢。

My url is http://sample_domain/sample.json?{ "language" : "en", "category" : "sports"}

I am converting this to NSURL object like below.

NSURL *url=[NSURL URLWithString:@"http://sample_domain/sample.json?{ "language" : "en", "category" : "sports"}"];

its returning nil to NSURL object, i know the URL should be in specific format from apple documentation,otherwise it will be considered as a malware site and returns nil object,

my question is how can i pass these paremeters with apple standards, so that it will not retun nil object.

Thanks in advance.

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

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

发布评论

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

评论(1

小猫一只 2024-10-16 02:03:37

尝试一下,

NSURL *url=[NSURL URLWithString:[@"http://sample_domain/sample.json?{ \"language\" : \"en\", \"category\" : \"sports\"}"
                  stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

我不确定为什么 '"' 字符在您的示例中没有转义,但我认为如果没有转义,您的代码不应编译。

此外,您需要(这是主要问题)替换 url 中非法的字符(例如 ' :' 以及相应的百分比转义 - 这就是 stringByAddingPercentEscapesUsingEncoding 函数的作用。

Try

NSURL *url=[NSURL URLWithString:[@"http://sample_domain/sample.json?{ \"language\" : \"en\", \"category\" : \"sports\"}"
                  stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

I'm not sure why '"' characters are not escaped in your example, but I think without escapes your code should not compile.

Also you need (and that's the main problem) to replace characters that are illegal in url (e.g. ':' with corresponding percent escapes - that's what stringByAddingPercentEscapesUsingEncoding function does.

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