当我尝试使用 struct URLRequest from Foundation 时,使用 swift 5.1.1 进行编译时出现错误。相同的代码适用于 swift 5.0.1。

示例:给定带有内容的文件 Foo.swift

import Foundation
print(URLRequest.self)

使用 Swift 5.0.1 我们得到
$ docker run --rm -v "$PWD:/app" swift:5.0.1 sh -c \
     'swiftc /app/Foo.swift && ./Foo'
URLRequest

但是随着 5.1.1
$ docker run --rm -v "$PWD:/app" swift:5.1.1 sh -c \
     'swiftc /app/Foo.swift && ./Foo
Foo.swift:2:7: error: use of unresolved identifier 'URLRequest'
print(URLRequest.self)
      ^~~~~~~~~~

我似乎找不到任何提及 Foundation 相关更改的内容,而且 https://github.com/apple/swift-corelibs-foundation 的源代码看起来也很稳定。

这里发生了什么,是否有解决方法?

最佳答案

这是由将网络相关对象的 recent move 放入新的 FoundationNetworking 模块引起的。 Darwin 上不存在新模块,因此必须使用预处理器命令才能使代码在所有支持的平台上工作:

import Foundation
#if canImport(FoundationNetworking)
import FoundationNetworking
#endif

print(URLRequest.self)

上面给出的两个 docker 命令都可以很好地编译此代码。

关于swift - 如何在 Linux 上使用 Foundation 的 URLRequest 类型?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58592508/

10-16 23:31