作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
from this link我得到了相同的 commonName 但它应该是不同的?!
let jsonData = NSData(contentsOfURL: url!)
let readableJSON = JSON(data: jsonData!, options: NSJSONReadingOptions.MutableContainers, error: nil)
let object = try! NSJSONSerialization.JSONObjectWithData(jsonData!, options: NSJSONReadingOptions.AllowFragments) as! Dictionary<String, AnyObject>
let json = JSON(object)
for (_,object):(String, JSON) in readableJSON {
let commonName = json["toLocationDisambiguation"]["disambiguationOptions"][0]["place"]["commonName"].stringValue
commonNameArray.append(commonName)
}
最佳答案
因为 [0],你需要做一些类似的事情
var i = 0
for (_,object):(String, JSON) in readableJSON {
let commonName = json["toLocationDisambiguation"]["disambiguationOptions"][i]["place"]["commonName"].stringValue
commonNameArray.append(commonName)
i = i+1
}
关于json - 为什么我的 commonName 在我的循环中重复相同的内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35582252/
到目前为止,我一直在使用我添加到 SoapUI 5.2 项目的证书,它使我能够访问预生产服务器。但是,现在我已准备好转移到生产环境,我正在尝试使用 SoapUI 检查新的生产证书,但我收到了下一个错误
from this link我得到了相同的 commonName 但它应该是不同的?! let jsonData = NSData(contentsOfURL: url!) let readableJ
我有一个编码的 x509 证书,我想更新 CommonName(又名主题或主机名)。 这是我到目前为止的代码(简化): import ( "crypto/tls", "crypto
尝试在 Amazon EC2 实例上上传自签名证书时遇到困难。我已经使用 OpenSSL 生成了私钥和服务器证书。但是当我在 apache 的 .config 文件中配置它并重新启动服务器时,它说“R
我有一个应用程序应用程序框架,它在网络上的未命名主机之间以对等方式工作。我想对流量进行加密,所以我使用 M2Crypto 实现了一个设置,但我遇到了麻烦。我不知道在创建证书时要为“commonName
我是一名优秀的程序员,十分优秀!