Commit 3c77e3af authored by David黄金龙's avatar David黄金龙

处理一处 可能的 crash

parent 54301724
...@@ -194,7 +194,10 @@ class YHNetRequest: NSObject { ...@@ -194,7 +194,10 @@ class YHNetRequest: NSObject {
print("网络请求头数据如下:") print("网络请求头数据如下:")
print(requestHeaders) print(requestHeaders)
print("业务参数:") print("业务参数:")
print(self.params as Any)
if let param = self.params {
print(param)
}
print("网络请求返回数据:\n \(string)") print("网络请求返回数据:\n \(string)")
print("********************************end") print("********************************end")
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment