作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一款送货应用程序,但是我的购物车遇到了一些问题。问题是这样的:每次客户向购物车添加新商品时,购物车中的所有商品都会采用最新商品的名称。它只会覆盖 tableView 对象,不会影响我的后端,所以我知道我导入了错误的东西。
为了清楚起见,我有两个表:通过 JSON 引入的产品和产品尺寸:
产品文件:
import Foundation
import SwiftyJSON
class Product {
//This pulls the information per product. Edit information here and attach to each Restaurant cell.
var id: Int?
var name: String?
var short_description: String?
var image: String?
var type: String?
var size: String?
init(json: JSON) {
self.id = json["id"].int
self.name = json["name"].string
self.short_description = json["short_description"].string
self.image = json["image"].string
self.type = json["course"].string
}
}
产品尺寸:
import Foundation
import SwiftyJSON
class ProductSize {
//Label for product information
var price:Float?
var sizeId: Int?
var size: Int?
var product_id: Int?
init(json: JSON) {
self.price = json["price"].float
self.sizeId = json["id"].int
self.size = json["size"].int
self.product_id = json["product_id"].int
}
餐食是从之前的 View Controller 传递给我们的:
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
if segue.identifier == "cartInfo" {
let controller = segue.destination as! CartController
controller.product = product
}
}
在购物车 Controller 中,我显示了购物车中的所有餐食,但它仅一遍又一遍地显示相同的餐食。
var product: Product?
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "shoppingCartCell", for: indexPath) as! CartCell
let cart = Cart.currentCart.items[indexPath.row]
let pname = product?.name
cell.lblQty.text = "\(cart.qty)"
cell.lblTotal.text = "$\(cart.productSize.price! * Float(cart.qty))"
cell.lblName.text = pname
return cell
在页面上,输出如下所示:
现在,如果您订购一个汉堡包,然后将芝士汉堡放入购物车,则会显示为订购两个芝士汉堡。我该怎么做才能显示购物车中所有商品的正确信息?
这是填充所有内容的 Tableview:
//Populate products in cart.
extension CartController: UITabBarDelegate, UITableViewDataSource {
func numberOfSections(in tableView: UITableView) -> Int {
return 1
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return Cart.currentCart.items.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "shoppingCartCell", for: indexPath) as! CartCell
let cart = Cart.currentCart.items[indexPath.row]
let pname = self.product
cell.lblQty.text = "\(cart.qty)"
cell.lblTotal.text = "$\(cart.productSize.price! * Float(cart.qty))"
cell.lblName.text = pname?.name
return cell
}
}
最佳答案
产品名称的重复仅意味着一件事:product
不是一系列产品,而是一个产品,因此 product?.name
会不断出现。显然你正在设置 product
Cart
中的变量来自上一个 VC 的类,您应该创建 product
相反,一个数组,并从前一个 View Controller 附加到它。
整个结构很困惑,也许你也很困惑cart
与 product
在func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath)
关于arrays - 餐车被覆盖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50339604/
我是一名优秀的程序员,十分优秀!