- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在尝试解析来 self 的服务器的 JSON 格式的响应。
这是我的代码的第一部分:
// (responseBody is of type NSData)
guard let dictionary = try? NSJSONSerialization.JSONObjectWithData(responseBody!, options: [.MutableContainers]) else{
fatalError("JSON Root Dictionary Not Found")
}
print("Dictionary: \(dictionary)")
...并且日志正确地给出了:
Dictionary: {
count = 1;
date = "2015-12-22T13:16:17.727";
items = (
{
attribute1 = null;
attribute2 = null;
attribute3 = null;
date = "2015-12-22T17:30:52.764";
size = 9175;
version = 19;
}
);
}
(省略不相关字段,相关字段名称和值已更改以保密)
...因此键 items
的值似乎是一个符合“字典数组的对象,每个字典都具有 String
类型的键和输入任何
”。
接下来,获取items
数组:
guard let count = dictionary["count"] as? Int else {
fatalError("Item Count Not Found")
}
guard count > 0 else {
fatalError("Item Count Is Zero")
}
guard let items = dictionary["items"]! else{
fatalError("Items Array Not Found")
}
if items is Array<Any> {
// THIS TEST FAILS (SHOULD PASS?)
print("Items is an array")
}
else if items is Dictionary<String, Any> {
// THIS TEST FAILS, TOO (JUST OUT OF DESPERATION...)
print("Items is a dictionary")
}
else{
// ...SO THIS CODE RUNS.
print("Really? \(items)")
}
但是 - 正如上面代码中的注释所解释的那样 - 我无法将其转换为数组,而是执行了最后一个 print()
调用 (print("Really?\(items)")
), 给出:
Really? (
{
attribute1 = null;
attribute2 = null;
attribute3 = null;
date = "2015-12-22T17:30:52.764";
size = 9175;
version = 19;
}
)
...所以,items
的类型是什么?我如何获取我的数组?
也许我遗漏了一些有关 Swift 集合类型的信息?
注意:起初我怀疑数组元素是用圆括号 (()
) 而不是方括号 ([]
).但是,字典和数组的控制台输出似乎遵循这种格式,如 the answers to this question 中所述。 .
更新:根据@Paulw11 在下面评论中给出的提示,我使用以下代码解决了这个问题:
guard let items = dictionary["items"]! as? NSMutableArray else{
fatalError("Items Array Not Found")
}
for element in documents { // I wish I could combine these
let item = element as! NSDictionary // two lines into one (enumeration and cast)
print("Item: \(item)")
}
...但是,我仍然不清楚如何实现不依赖于基础类的纯 Swift 解决方案。
更新 2: 我正在尝试使用以下代码将 NSMutableArray
转换为原生 Swift 数组:
if var nativeItems = items as? [[String: AnyObject]] {
}
但这给了我:
WARNING: Cast from 'NSMutableArray' to unrelated type '[[String : AnyObject]]' always fails
在 if
block 的位置,并且(等待它):
ERROR: Call can throw, but it is not marked with 'try' and the error is not handled.
...在 AppDelegate.swift(CoreData 样板)中,完全相同的症状 described here .
CoreData 代码一直在编译。 如果我注释掉 if var nativeItems = items...
转换,错误就会消失。更改变量名称无效。确实。巫毒教。
幸运的是,我可以通过扩展样板的 lazy var persistentStoreCoordinator: NSPersistentStoreCoordinator = {...
部分中的 catch
子句来解决这个问题:
catch let error as NSError {
// Report any error we got.
print("Error: \(error)")
var dict = [String: AnyObject]()
dict[NSLocalizedDescriptionKey] = "Failed to initialize the application's saved data"
dict[NSLocalizedFailureReasonErrorKey] = failureReason
dict[NSUnderlyingErrorKey] = error as NSError
let wrappedError = NSError(domain: "YOUR_ERROR_DOMAIN", code: 9999, userInfo: dict)
// TODO: Replace this with code to handle the error appropriately.
// abort() causes the application to generate a crash log and
// terminate. You should not use this function in a shipping
// application, although it may be useful during development.
NSLog("Unresolved error \(wrappedError), \(wrappedError.userInfo)")
abort()
}
return coordinator
}()
为此:
catch let error as NSError {
// Report any error we got.
print("Error: \(error)")
var dict = [String: AnyObject]()
dict[NSLocalizedDescriptionKey] = "Failed to initialize the application's saved data"
dict[NSLocalizedFailureReasonErrorKey] = failureReason
dict[NSUnderlyingErrorKey] = error as NSError
let wrappedError = NSError(domain: "YOUR_ERROR_DOMAIN", code: 9999, userInfo: dict)
// TODO: Replace this with code to handle the error appropriately.
// abort() causes the application to generate a crash log and
// terminate. You should not use this function in a shipping
// application, although it may be useful during development.
NSLog("Unresolved error \(wrappedError), \(wrappedError.userInfo)")
abort()
}
catch {
// << ADDED THIS "CATCH-ALL" >>
fatalError()
}
return coordinator
}()
...令人惊讶的是,上面的警告(“cast always fails”)是没有根据的,代码执行得很完美...
说真的,苹果?
最佳答案
正如您已经发现的,它返回 NSMutableDictionary
的 NSMutableArray
。在 Swift 中将其转换为字典数组:
if var items = items as? [[String: AnyObject]] {
print(items[0])
} else {
print("Really?")
}
这就是为什么我更喜欢 SwiftyJSON 而不是 NSJSONSerializer
的原因。
你看到的 if var
可能比 if let
少很多。 if var
用于保持数组可变,因为您指定了 MutableContainers
选项。
关于ios - 无法从 JSON 中提取数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34446670/
我通过 spring ioc 编写了一些 Rest 应用程序。但我无法解决这个问题。这是我的异常(exception): org.springframework.beans.factory.BeanC
我对 TestNG、Spring 框架等完全陌生,我正在尝试使用注释 @Value通过 @Configuration 访问配置文件注释。 我在这里想要实现的目标是让控制台从配置文件中写出“hi”,通过
为此工作了几个小时。我完全被难住了。 这是 CS113 的实验室。 如果用户在程序(二进制计算器)结束时选择继续,我们需要使用 goto 语句来到达程序的顶部。 但是,我们还需要释放所有分配的内存。
我正在尝试使用 ffmpeg 库构建一个小的 C 程序。但是我什至无法使用 avformat_open_input() 打开音频文件设置检查错误代码的函数后,我得到以下输出: Error code:
使用 Spring Initializer 创建一个简单的 Spring boot。我只在可用选项下选择 DevTools。 创建项目后,无需对其进行任何更改,即可正常运行程序。 现在,当我尝试在项目
所以我只是在 Mac OS X 中通过 brew 安装了 qt。但是它无法链接它。当我尝试运行 brew link qt 或 brew link --overwrite qt 我得到以下信息: ton
我在提交和 pull 时遇到了问题:在提交的 IDE 中,我看到: warning not all local changes may be shown due to an error: unable
我跑 man gcc | grep "-L" 我明白了 Usage: grep [OPTION]... PATTERN [FILE]... Try `grep --help' for more inf
我有一段代码,旨在接收任何 URL 并将其从网络上撕下来。到目前为止,它运行良好,直到有人给了它这个 URL: http://www.aspensurgical.com/static/images/a
在过去的 5 个小时里,我一直在尝试在我的服务器上设置 WireGuard,但在完成所有设置后,我无法 ping IP 或解析域。 下面是服务器配置 [Interface] Address = 10.
我正在尝试在 GitLab 中 fork 我的一个私有(private)项目,但是当我按下 fork 按钮时,我会收到以下信息: No available namespaces to fork the
我这里遇到了一些问题。我是 node.js 和 Rest API 的新手,但我正在尝试自学。我制作了 REST API,使用 MongoDB 与我的数据库进行通信,我使用 Postman 来测试我的路
下面的代码在控制台中给出以下消息: Uncaught DOMException: Failed to execute 'appendChild' on 'Node': The new child el
我正在尝试调用一个新端点来显示数据,我意识到在上一组有效的数据中,它在数据周围用一对额外的“[]”括号进行控制台,我认为这就是问题是,而新端点不会以我使用数据的方式产生它! 这是 NgFor 失败的原
我正在尝试将我的 Symfony2 应用程序部署到我的 Azure Web 应用程序,但遇到了一些麻烦。 推送到远程时,我在终端中收到以下消息 remote: Updating branch 'mas
Minikube已启动并正在运行,没有任何错误,但是我无法 curl IP。我在这里遵循:https://docs.traefik.io/user-guide/kubernetes/,似乎没有提到关闭
每当我尝试docker组成任何项目时,都会出现以下错误。 我尝试过有和没有sudo 我在这台机器上只有这个问题。我可以在Mac和Amazon WorkSpace上运行相同的容器。 (myslabs)
我正在尝试 pip install stanza 并收到此消息: ERROR: No matching distribution found for torch>=1.3.0 (from stanza
DNS 解析看起来不错,但我无法 ping 我的服务。可能是什么原因? 来自集群中的另一个 Pod: $ ping backend PING backend.default.svc.cluster.l
我正在使用Hibernate 4 + Spring MVC 4当我开始 Apache Tomcat Server 8我收到此错误: Error creating bean with name 'wel
我是一名优秀的程序员,十分优秀!