gpt4 book ai didi

swift - NSURLrelativeToURL 向后?

转载 作者:行者123 更新时间:2023-11-30 10:04:03 27 4
gpt4 key购买 nike

即使从其他项目复制和粘贴代码,我的 NSURL 也会向后格式化,这毫无意义。

例如:

let baseURL = NSURL(string: "http://example.com/v1/")
NSURL(string: "foo", relativeToURL: baseURL)

应返回:“http://example.com/v1/foo

而是返回:“foo -- ttp://example.com/v1/”

有人见过这个吗?

最佳答案

这就是相对 URL 在其(调试)描述中的显示方式。 absoluteString 仍然是正确的;此格式无关。

let baseURL = NSURL(string: "http://example.com/v1/")!
let u = NSURL(string: "foo", relativeToURL: baseURL)!

print(u) // prints the URL's description, "foo -- http://example.com/v1/"
print(u.absoluteString) // prints "http://example.com/v1/foo"

关于swift - NSURLrelativeToURL 向后?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37066394/

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