如何将Nsmutablearray作为json数据存储到SQL并在ios中检索(swift)

时间:2016-03-05 05:58:59

标签: ios mysql json nsmutablearray

需要将Nsmutablearray存储到MySQL(phpmyadmin)。

数组作为我字典中的值

dict. SetValue (mutablearray, forKey: "mutable")

我保存在MySQL" BLOB"属性

保存:

Let Json: NSData = try! NSJSONSerialization.dataWithJSONObject(dict, options: NSJSONWritingOptions.PrettyPrinted)

urlString.stringByAddingPercentEncodingWithAllowedCharacters(NSCharacterSet.URLPathAllowedCharacterSet())!

 // remaining code of JSON serialization and saving in PHP

但这不起作用。当我检索它时,它返回为"数组"只有字符串。

我也试过了:

     let data = NSKeyedArchiver.archivedDataWithRootObject(mutablearray)

请告诉我有没有办法将Nsmutablearry存储到sql并从中检索。

提前致谢。

0 个答案:

没有答案