gpt4 book ai didi

swift - 我在 swift 2 中的 http get 请求中有一个错误

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:26:31 26 4
gpt4 key购买 nike

我有错误:

fatal error: unexpectedly found nil while unwrapping an Optional value

使用这个 Swift 代码:

import Alamofire
let request = Alamofire.request(.GET, "http://192.168.2.16/APIPruebas/validalogin/{\"usuario\":\"user\",\"pwd\":\"pwd\",\"id\":\"10\",\"ulogin\":\"1\",\"clogin\":\"1\"}")

print(request)

我认为问题在于 { }

但我不知道我是否使用\字符正确地转义了 "。

在 postman 中可以很好地处理这个请求

http://192.168.2.16/APIPruebas/validalogin/{"usuario":"user","pwd":"pwd","id":"10","ulogin":"1","clogin":"1"}

执行 HTTP GET 请求的最佳方法是什么?

谢谢

最佳答案

我认为您需要在像这样将 url 与 api 一起使用之前对其进行编码

let str = "http://192.168.2.16/APIPruebas/validalogin/{\"usuario\":\"user\",\"pwd\":\"pwd\",\"id\":\"10\",\"ulogin\":\"1\",\"clogin\":\"1\"}"

let encodedUrl = str.stringByAddingPercentEncodingWithAllowedCharacters(.URLQueryAllowedCharacterSet())

现在在 Alamofire.request 方法中传递 encodedUrl。

关于swift - 我在 swift 2 中的 http get 请求中有一个错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38410651/

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