NSURLRequest 返回 null

发布于 2024-11-25 06:01:48 字数 308 浏览 1 评论 0 原文

有人知道为什么我在这段代码中得到空值吗?

NSURLRequest *requisicao = [NSURLRequest requestWithURL:
                               [NSURL URLWithString:URLAddress]];

当我调试此行并预览此变量的内容时,我收到 null -
""

我的 URLAddress 是对 JSON 服务的请求。

Someone knows why I'm getting null in this code?

NSURLRequest *requisicao = [NSURLRequest requestWithURL:
                               [NSURL URLWithString:URLAddress]];

When I debug this line and preview the content of this variable, I receive null -
"<NSURLRequest (null)>"

My URLAddress is a request for a JSON service.

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

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

发布评论

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

评论(1

楠木可依 2024-12-02 06:01:48

它很可能为 null,因为 URLAddress 包含需要进行百分比转义的字符(这是 URLWithString 方法所需要的)。

尝试使用 stringByAddingPercentEscapesUsingEncoding:

NSURLRequest *requisicao = [NSURLRequest requestWithURL:
    [NSURL URLWithString:
        [URLAddress stringByAddingPercentEscapesUsingEncoding:
                        NSUTF8StringEncoding]]];    

但是,请参阅

It's most likely null because URLAddress contains characters that need to be percent-escaped (which is what the URLWithString method needs).

Try using stringByAddingPercentEscapesUsingEncoding:

NSURLRequest *requisicao = [NSURLRequest requestWithURL:
    [NSURL URLWithString:
        [URLAddress stringByAddingPercentEscapesUsingEncoding:
                        NSUTF8StringEncoding]]];    

However, see this answer by Dave DeLong which points out limitations of stringByAddingPercentEscapesUsingEncoding and alternatives to it.

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