我正在尝试将数据从我的应用程序发送到另一个程序员开发的 Android 应用程序也在使用该 API。我使用 NSJSONSerialization.dataWithJSONObject 将 JSON 转换为 NSData 对象,然后将其附加到 NSURLRequest 但 NSData 对象是 JSON 字符串的十六进制表示。根据另一位开发人员的说法,他的 Android 代码正在以 UTF-8 编码创建和传输 JSON 对象,所以我的问题是如何将 JSON 字符串作为 UTF-8 文本发送,或者使 API 能够尽可能无缝地处理这两个来源?
编辑:我现在使用的代码
func postToServer() {
let endPoint: String = "http://server.com"
guard let url = NSURL(string: endPoint) else {
print("ERROR: cannot create URL")
return
}
let urlRequest = NSMutableURLRequest(URL: url)
urlRequest.HTTPMethod = "OST"
urlRequest.setValue("application/json; charset=utf-8", forHTTPHeaderField: "Content-Type")
let loc = self.getLocation()
var content:[String: AnyObject] = ["action": "put-point", "request": ["rangeKey": self.id, "lng": loc.coordinate.longitude, "lat": loc.coordinate.latitude, "count": self.count]]
var data: NSData! = NSData()
do {
data = try NSJSONSerialization.dataWithJSONObject(content, options: NSJSONWritingOptions())
print(data)
} catch {
print ("Error")
}
urlRequest.HTTPBody = data
let config = NSURLSessionConfiguration.defaultSessionConfiguration()
let session = NSURLSession(configuration: config)
let task = session.dataTaskWithRequest(urlRequest, completionHandler:{ data, response, error in
guard error == nil else {
print("ERROR: Cannot call Get on endpoint")
print(error)
return
}
guard let responseData = data else {
print("ERROR: Did not receive any data")
return
}
print("DATA: \(data)")
})
task.resume()
}
Best Answer-推荐答案 strong>
你可以这样做
let jsonObj = [...]
var data = NSData()
do {
data = try NSJSONSerialization.dataWithJSONObject(jsonObj, options: .PrettyPrinted)
let dataString = NSString(data: data, encoding: NSUTF8StringEncoding)!
} catch {
print("error: \(error)")
}
*在 Swift 2 和 Xcode 7.3.1 上试过
关于ios - 用于公共(public)休息 API 的 NSData 对象中的 JSON,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/38471265/
|