从 NSString 或 NSUrl 获取网站根目录
有什么想法如何从 NSString 或 NSURL 获取网站的根目录吗?那么,如果我的 URL 是 http://www.foo.com/bar/baragain,我将如何获得 http://www.foo.com/?
Any ideas how I can get the root of a website from an NSString or an NSURL? So if my URL was http://www.foo.com/bar/baragain how would I get http://www.foo.com/?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
通过使用
[url schema]
和[url host]
如下所示:By using
[url scheme]
and[url host]
like so:您可以从字符串中删除
NSURL
的path
。这说明了属于根站点一部分的端口号和其他数据。You can remove the
NSURL
'spath
from the string. This accounts for port numbers and other data that are part of the root site.