SWIFT 翻译应用

SWIFT Translator App

我使用 Yandex 创建翻译器 api。 我使用这个功能:

func getTranslate(text: String, lang: String, completion: @escaping (Translation?) -> Void) {
    guard let url = URL(string: translateUrl + "?key=\(key)&text=\(text)&lang=\(lang)&format=plain&options=1") else { return }
    var request = URLRequest(url: url)
    request.httpMethod = "POST"

    URLSession.shared.dataTask(with: request) { (data, response, error) in
        if let error = error {
            print(error.localizedDescription)
            completion(nil)
            return
        }

        guard let data = data else {
            completion(nil)
            return
        }

        do {
            let translation = try JSONDecoder().decode(Translation.self, from: data)
            completion(translation)
        } catch {
            print(error)
            completion(nil)
        }
        }.resume()
}

但是如果我输入"Text"多了一个词就不会进行翻译。

API 文档说:

"For the source code, be sure to use URL-encoding."

我怀疑我的问题是因为我只是使用文本,没有以任何方式编码。 如何解决这个问题?

api 文档 https://tech.yandex.ru/translate/doc/dg/reference/detect-docpage/

在这种情况下,强烈建议使用 URLComponentsURLQueryItem,它隐式处理 URL 编码

guard var components = URLComponents(string: translateUrl) else { return }
components.queryItems = [URLQueryItem(name: "key", value: key),
                         URLQueryItem(name: "text", value: text),
                         URLQueryItem(name: "lang", value: lang),
                         URLQueryItem(name: "format", value: "plain"),
                         URLQueryItem(name: "options", value: String(1))]
var request = URLRequest(url: components.url!)