- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 iOS 编程新手,有一个关于 JSON 解析的小问题。
"data": [
{
"merchantId": "56",
"timings": [
[
"11:00 AM",
"11:00 PM"
]
],
"tags": [
"dine,north chinese"
],
"offers": [
{
"approvedBy": "56",
"locationId": "56",
"description": "Get 15% Off",
"finePrint": "• Cannot be combined with other offers.",
"audience": "all",
"status": "live",
"createdAt": "2016",
"updatedAt": "2016",
"offerType": "Discount",
"discount": "15",
"maxDiscount": 0,
"id": "56"
},
{
"approvedBy": "56023",
"locationId": "56023",
"description": "Get 25% Off",
"finePrint": "• Cannot be combined with other offers",
"audience": "all",
"status": "live",
"createdAt": "2016",
"updatedAt": "2016",
"hangoutId": "",
"offerType": "PercentDiscount",
"discount": "25",
"amount": 0,
"maxDiscount": 0,
"id": "5623"
},
};
我想下载上面的JSON数据,解析它并将其显示在标签中。我可以使用以下代码下载并显示merchantId:
let JSONRespone = response.result.value as? [String:AnyObject]
if JSONRespone != nil {
let datarray = JSONRespone!["data"] as? [[String:AnyObject]]
if datarray != nil {
for data in datarray! {
let anObject = SomeObject()
let merchantId = data["merchantId"] as? String
if merchantId != nil {
anObject.merchantidentity = merchantId!
}
如果我对计时和标签使用相同的代码,它不会显示任何内容。当我尝试在控制台中显示结果时,它显示“nil”。
除此之外,我如何在三个不同的标签中打印“优惠”中的“描述”。我只能打印其中的一张。有人可以帮我显示以下内容吗?提前致谢。
最佳答案
注意,offers是一个offers数组,数组中的每一项都是一个字典,所以你最好创建一个新的对象“class”Offer,其属性代表offers数组中每个字典中的每个键
所以你的 SomeObject 类应该看起来像这样
class SomeObject {
var name: String!
var imageURLString: String!
var address: String!
var area: String!
var awardedLoyalty: Int!
var cashbackPercentage: Double!
var city: String!
var contactNumber: String!
var createdAt: String!
var distanceFromUser: Double!
var id: String!
var isDiscounted: Bool!
var isFavorite: Bool!
var latitude: Double!
var logo: String!
var longitude: Double!
var merchantId: String!
var offers: [Offer]! // this is an array of offers, each offer in the array is of type (Offer()), which you must create your self, check Offer.swift file, it's a class Offer
var tags: [String]!
var timings: [String]!
var updatedAt: String!
}
而SomeObject.offers是Offer数组
所以你的 Offer 对象“类”应该类似于
class Offer {
var amount: Double!
var approvedBy: String!
var audience: String!
var createdAt: String!
var description: String!
var discount: Double!
var finePrint: String!
var hangoutId: String!
var id: String!
var locationId: String!
var maxDiscount: Double!
var offerType: String!
var status: String!
var updatedAt: String!
}
还要注意标签是一个字符串数组,每个字符串都是一些用“,”分隔的标签后端开发人员应该将其设置为每个标签的单独字符串数组
但是,这里我添加了完成代码解析部分的代码
{
for data in dataArray! {
let anObject = SomeObject()
let name = data["name"] as? String
if name != nil {
anObject.name = name!
print("anObject.name \(name!)")
}
let heroImage = data["heroImage"] as? String
if heroImage != nil {
anObject.imageURLString = heroImage!
print("anObject.imageURLString \(heroImage!)")
}
let address = data["address"] as? String
if address != nil {
anObject.address = address!
print("anObject.address \(address!)")
}
let area = data["area"] as? String
if area != nil {
anObject.area = area!
print("anObject.area \(area!)")
}
let city = data["city"] as? String
if city != nil {
anObject.city = city!
print("anObject.city \(city!)")
}
let contactNumber = data["contactNumber"] as? String
if contactNumber != nil {
anObject.contactNumber = contactNumber!
print("anObject.contactNumber \(contactNumber!)")
}
let createdAt = data["createdAt"] as? String
if createdAt != nil {
anObject.createdAt = createdAt!
print("anObject.createdAt \(createdAt!)")
}
let distanceFromUser = data["distanceFromUser"] as? Double
if distanceFromUser != nil {
anObject.distanceFromUser = distanceFromUser!
print("anObject.distanceFromUser \(distanceFromUser!)")
}
let id = data["id"] as? String
if id != nil {
anObject.id = id!
print("anObject.id \(id!)")
}
let isDiscounted = data["isDiscounted"] as? Int
if isDiscounted != nil {
if isDiscounted! == 0 {
anObject.isDiscounted = false
}
else if isDiscounted == 1 {
anObject.isDiscounted = true
}
print("anObject.isDiscounted \(anObject.isDiscounted)")
}
let isFavorite = data["isFavorite"] as? Int
if isFavorite != nil {
if isFavorite! == 0 {
anObject.isFavorite = false
}
else if isFavorite == 1 {
anObject.isFavorite = true
}
print("anObject.isFavorite \(anObject.isFavorite)")
}
let latitude = data["latitude"] as? Double
if latitude != nil {
anObject.latitude = latitude!
print("anObject.latitude \(latitude!)")
}
let longitude = data["longitude"] as? Double
if longitude != nil {
anObject.longitude = longitude!
print("anObject.longitude \(longitude!)")
}
let merchantId = data["merchantId"] as? String
if merchantId != nil {
anObject.merchantId = merchantId!
print("anObject.merchantId \(merchantId!)")
}
let logo = data["logo"] as? String
if logo != nil {
anObject.logo = logo!
print("anObject.logo \(logo!)")
}
let awardedLoyalty = data["awardedLoyalty"] as? Int
if awardedLoyalty != nil {
anObject.awardedLoyalty = awardedLoyalty!
print(" anObject.awardedLoyalty \(awardedLoyalty!)")
}
let cashbackPercentage = data["cashbackPercentage"] as? Double
if cashbackPercentage != nil {
anObject.cashbackPercentage = cashbackPercentage!
print("anObject.cashbackPercentage \(cashbackPercentage!)")
}
let offers = data["offers"] as? [[String:AnyObject]]
if offers != nil {
var offersArray: [Offer] = []
for anOffer in offers! {
// note that offers is an array of offers, each item in the array is a dictionary, so you better create a new object Offer, with properties that represent each key in each dictionary in offers array
let offer = Offer()
let amount = anOffer["amount"] as? Double
if amount != nil {
offer.amount = amount!
print("offer.amount \(amount!)")
}
let approvedBy = anOffer["approvedBy"] as? String
if approvedBy != nil {
offer.approvedBy = approvedBy!
print("offer.approvedBy \(approvedBy!)")
}
let audience = anOffer["audience"] as? String
if audience != nil {
offer.audience = audience!
print("offer.audience \(audience!)")
}
let createdAt = anOffer["createdAt"] as? String
if createdAt != nil {
offer.createdAt = createdAt!
print("offer.createdAt \(createdAt!)")
}
let description = anOffer["description"] as? String
if description != nil {
offer.description = description!
print("offer.description \(description!)")
}
let discount = anOffer["discount"] as? Double
if discount != nil {
offer.discount = discount!
print("offer.discount \(discount!)")
}
let finePrint = anOffer["finePrint"] as? String
if finePrint != nil {
offer.finePrint = finePrint!
print("offer.finePrint \(finePrint!)")
}
let hangoutId = anOffer["hangoutId"] as? String
if hangoutId != nil {
offer.hangoutId = hangoutId!
print("offer.hangoutId \(hangoutId!)")
}
let id = anOffer["id"] as? String
if id != nil {
offer.id = id!
print("offer.id \(id!)")
}
let locationId = anOffer["locationId"] as? String
if locationId != nil {
offer.locationId = locationId!
print("offer.locationId \(locationId!)")
}
let maxDiscount = anOffer["maxDiscount"] as? Double
if maxDiscount != nil {
offer.maxDiscount = maxDiscount!
print("offer.maxDiscount \(maxDiscount!)")
}
let offerType = anOffer["offerType"] as? String
if offerType != nil {
offer.offerType = offerType!
print("offer.offerType \(offerType!)")
}
let status = anOffer["status"] as? String
if status != nil {
offer.status = status!
print("offer.status \(status!)")
}
let updatedAt = anOffer["updatedAt"] as? String
if updatedAt != nil {
offer.updatedAt = updatedAt!
print("offer.updatedAt \(updatedAt!)")
}
offersArray.append(offer)
}
anObject.offers = offersArray
}
let tags = data["tags"] as? [String]
for tag in tags! {
//note the tags array of strings, each string is some tags separated by ","
//backend developer should make it an array of separate string for each tag
let tagsArray = tag.componentsSeparatedByString(",")
anObject.tags = tagsArray
print("tagsArray \(tagsArray)")
}
let timings = data["timings"] as? [[String]]
if timings != nil {
for timingsArray in timings! {
var aTimingArray: [String] = []
for timing in timingsArray {
aTimingArray.append(timing)
print("timing \(timing)")
}
anObject.timings = aTimingArray
}
}
let updatedAt = data["updatedAt"] as? String
if updatedAt != nil {
anObject.updatedAt = updatedAt!
print("anObject.updatedAt \(updatedAt!)")
}
关于ios - Swift:有关 JSON 解析的帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38533165/
我有这个问题: 我们声称对 float 使用相等测试是不安全的,因为算术运算会引入舍入错误,这意味着两个应该相等的数字实际上并不相等。 对于这个程序,您应该选择一个数字 N,并编写一个程序来显示 1
为什么这个脚本的输出是 5 而不是 8 ? 我认为 -- 意味着 -1 两次。 var x = 0; var y = 10; while ( x
我现在可以从 cmd 窗口中执行的 FFmpeg 过程中读取最后一行。 使用脚本主机模型对象引用此源。 Private Sub Command1_Click() Dim oExec
使用 vlookup,当匹配发生时,我想从匹配发生的同一行显示工作表 2 中 C 列的值。我想出的公式从 C 列表 2 中获取值,但它从公式粘贴在表 3 上的行中获取,而不是从匹配发生的位置获取。 这
我在破译 WCF 跟踪文件时遇到了问题,我希望有人能帮助我确定管道中的哪个位置发生了延迟。 “Processing Message XX”的跟踪如下所示,在事件边界和传输到“Process Actio
我有四个表,USER、CONTACT、CONACT_TYPE 和 USER_CONTACT USER_CONTACT 存储用户具有填充虚拟数据的表的所有联系人如下 用户表 USER_ID(int)|
以下有什么作用? public static function find_by_sql($sql="") { global $database; $result_set = $data
我正在解决 JavaBat 问题并且对我的逻辑感到困惑。 这是任务: Given a day of the week encoded as 0=Sun, 1=Mon, 2=Tue, ...6=Sat,
我正在研究一些 Scala 代码,发现这种方法让我感到困惑。在匹配语句中,sublist@ 是什么?构造?它包含什么样的值(value)?当我打印它时,它与 tail 没有区别,但如果我用尾部替换它,
我正在使用以下代码自行缩放图像。代码很好,图像缩放也没有问题。 UIImage *originImg = img; size = newSize; if (originImg.size.width >
Instruments 无法在我的 iPad 和 iPhone 上启动。两者都已正确配置,我可以毫无问题地从 xcode 调试它们上的代码,但 Instruments 无法启动。 我听到的只是一声嘟嘟
我想用 iPhone 的 NSRegularExpression 类解析此文本: Uploaded652.81 GB 用于摘录上传和652.81文本。 最佳答案 虽然我确实认为 xml 解析器更适合解
我找到了 solution在 Stackoverflow 上,根据过滤器显示 HTML“li”元素(请参阅附件)。本质上基于 HTML 元素中定义的 css 类,它填充您可以从中选择的下拉列表。 我想
这是一个简单的问题,但我是在 SQL 2005 中形成 XML 的新手,但是用于形成如下所示表中的 XML 的最佳 FOR XML SQL 语句是什么? Column1 Column2 -
我在 www.enigmafest.com 有一个网站!您可以尝试打开它!我面临的问题是,在预加载器完成后,主页会出现,但其他菜单仍然需要很长时间才能加载,而且声音也至少需要 5 分钟! :( 我怎样
好吧,我正在尝试用 Haskell 来理解 IO,我想我应该编写一个处理网页的简短小应用程序来完成它。我被绊倒的代码片段是(向 bobince 表示歉意,但公平地说,我并不想在这里解析 HTML,只是
如何使用背景页面来突出显示网站上的某个关键字,无论网站是什么(谷歌浏览器扩展)?没有弹出窗口或任何东西,它只是在某人正在查看的网站上编辑关键字。我以前见过这样的,就是不明白怎么做!谢谢你的帮助。 最佳
我是 Javascript 新手,需要一些帮助。 先看图片: . 积分预测器应用程序。 基本上当用户通过单选按钮选择获胜团队时它应该在积分栏中为获胜队添加 10 分,并且并根据得分高的球队自动对表格进
这是我的情况 - 我要发送一份时事通讯,我试图做的是,当用户单击电子邮件中的链接时,它会重定向到我的网页,然后会弹出一个灯箱,显示视频。我无法在页面加载时触发灯箱,因为您可以在查看灯箱之前转到同一页面
我有这个代码。 ¿Cuanto es ? Ir 我想获取用户输入的“验证码”值。我尝试这个但行不通。有什么帮助吗? var campo = d
我是一名优秀的程序员,十分优秀!