菜鸟教程小白 发表于 2022-12-12 12:14:51

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([ &#34;Name&#34; : &#34;Ben&#34;, &#34;UserID&#34; : 2, &#34;Username&#34; : &#34;benji&#34;])
</code></pre>

<p>Alamofire 4 请求看起来像这样</p>

<pre><code>service.upload(multipartFormData: { (MultipartFormData) in
            MultipartFormData.append(userData, withName: &#34;userInfo&#34;)
            MultipartFormData.append(fileUrl, withName: &#34;File&#34;)   
            }, 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([
                &#34;name&#34;: _name.text,
                &#34;code&#34;: _code.text,
                &#34;iconId&#34;: _id])

//data.rawString() will return nil

    var data = JSON([
                &#34;name&#34;: _name.text!,
                &#34;code&#34;: _code.text!,
                &#34;iconId&#34;: _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: &#34;trackerInfo&#34;)
            MultipartFormData.append(fileUrl, withName: &#34;File&#34;)
      }, 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]
查看完整版本: ios - 在 Alamofire 4 中使用 SwiftyJson 为 MultipartFormData 请求创建 JSON 数据