swift 用Alamofire向后台post Array<Dictionary>类型的数组,后台把它当二维数组解析了?

WBOY
发布: 2016-06-06 20:15:54
原创
1625 人浏览过

这个是我post的数据:

<code>["content": "", "perform": (
        {
        "perform_id" = 21;
    },
        {
        "perform_id" = 11;
    }
), "title": "", "user_id": 10020, "id": 8, "action": join_project, "count": 1]
</code>
登录后复制
登录后复制

这个是服务器返回的数据:

<code>"Array<br>array(2) { 
 [0]=>  array(1)
 { 
   [\"perform_id\"]=>    string(2) "21"  } 

 [1]=>  array(1) 
{    ["perform_id"]=>   string(2) "11" }}{"result":true,"id":"59"}"</code>
登录后复制
登录后复制

回复内容:

这个是我post的数据:

<code>["content": "", "perform": (
        {
        "perform_id" = 21;
    },
        {
        "perform_id" = 11;
    }
), "title": "", "user_id": 10020, "id": 8, "action": join_project, "count": 1]
</code>
登录后复制
登录后复制

这个是服务器返回的数据:

<code>"Array<br>array(2) { 
 [0]=>  array(1)
 { 
   [\"perform_id\"]=>    string(2) "21"  } 

 [1]=>  array(1) 
{    ["perform_id"]=>   string(2) "11" }}{"result":true,"id":"59"}"</code>
登录后复制
登录后复制

哎,是自己SB了,也为了给新手提个醒,给后台post数组或者字典类型的数据时,要转json字符串,可以用系统的NSJSONSerialization来转。代码如下

<code>let jsonData = try! NSJSONSerialization.dataWithJSONObject(array, options: .PrettyPrinted)
let jsonString = String(data: jsonData, encoding: NSUTF8StringEncoding)</code>
登录后复制
相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!