ios - 在 Alamofire 4 中使用 SwiftyJson 为 MultipartFormData 请求创建 JSON 数据
<p><p>我需要使用 Alamofire 4 发送 MultipartFormData .Post 请求。</p>
<p>需要发送JSON和文件数据。 </p>
<p>我很难将 SwiftyJson 对象转换为类型数据对象。</p>
<p>SwiftyJSON 看起来像这样:</p>
<pre><code>var json: JSON = JSON([ "Name" : "Ben", "UserID" : 2, "Username" : "benji"])
</code></pre>
<p>Alamofire 4 请求看起来像这样</p>
<pre><code>service.upload(multipartFormData: { (MultipartFormData) in
MultipartFormData.append(userData, withName: "userInfo")
MultipartFormData.append(fileUrl, withName: "File")
}, to: url) { (encodingResult) in
switch encodingResult {
case .success(let upload, _, _):
upload.responseJSON { response in
debugPrint(response)
}
case .failure(let encodingError):
print(encodingError)
}
}
</code></pre>
<p>我的问题是如何将 SwiftyJson 对象转换为类型数据,以便将其附加到 mutlipartformdata?
我尝试了以下方法,但它们似乎不起作用,而且我无法在线找到解决方案:</p>
<pre><code>json.rawData()
json.rawString?.data(using: String.Encoding.utf8)
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我发现 SwiftyJSON 中的 json.rawString 存在/曾经存在错误,如下链接所述:</p>
<p> <a href="https://github.com/SwiftyJSON/SwiftyJSON/issues/645" rel="noreferrer noopener nofollow">https://github.com/SwiftyJSON/SwiftyJSON/issues/645</a> </p>
<p>使字段“隐式展开”将解决此问题:</p>
<pre><code> var data = JSON([
"name": _name.text,
"code": _code.text,
"iconId": _id])
//data.rawString() will return nil
var data = JSON([
"name": _name.text!,
"code": _code.text!,
"iconId": _id])
//data.rawString() will return correct result
</code></pre>
<p>在此之后我可以简单地使用它如下:</p>
<pre><code>self.service.upload(multipartFormData: { (MultipartFormData) in
MultipartFormData.append((data.rawString()?.data(using: String.Encoding.utf8))!, withName: "trackerInfo")
MultipartFormData.append(fileUrl, withName: "File")
}, to: url) { (encodingResult) in
switch encodingResult {
case .success:
print(encodingResult)
case .failure(let encodingError):
print(encodingError)
}
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 在 Alamofire 4 中使用 SwiftyJson 为 MultipartFormData 请求创建 JSON 数据,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/40070378/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/40070378/
</a>
</p>
页:
[1]