【问题标题】:Crash on Join with Fluent in Vapor加入 Fluent in Vapor 时崩溃
【发布时间】:2019-04-29 07:49:01
【问题描述】:

我有两个模型,它们有一对多的关系。这是我的课程。

预订

final class Booking: PostgreSQLModel {
    /// The unique identifier for this `Todo`.
    var id: Int?

    /// A title describing what this `Todo` entails.
    var user_id: User.ID
    var product_id: Product.ID
    var count: Int

    /// Creates a new `Todo`.
    init(id: Int? = nil, user_id: User.ID, product_id: Product.ID, count: Int) {
        self.id = id
        self.user_id = user_id
        self.product_id = product_id
        self.count = count
    }
}
extension Booking {
    var user: Parent<Booking, User> {
        return parent(\.user_id)
    }
    var product: Parent<Booking, Product> {
        return parent(\.product_id)
    }
}

产品

final class Product: PostgreSQLModel {
    /// The unique identifier for this `Todo`.
    var id: Int?

    /// A title describing what this `Todo` entails.
    var name: String
    var image_url: String
    var description: String
    var price: Int?

    /// Creates a new `Todo`.
    init(id: Int? = nil, name: String, image_url: String, description: String, price: Int) {
        self.id = id
        self.name = name
        self.image_url = image_url
        self.description = description
        self.price = price
    }
}
extension Product {
    var bookings: Children<Product, Booking> {
        return children(\.product_id)
    }
}

现在我想获取用户的所有预订,并且每次预订我都想获取产品信息。因此,为此我尝试加入 BookingProduct 表,但这会引发异常。

致命错误:“试试!”表达式意外引发错误:⚠️ CoreError: Parent&lt;Booking, Product&gt; 不符合 ReflectionDecodable。 - id:CoreError.ReflectionDecodable :文件/BuildRoot/Library/Caches/com.apple.xbs/Sources/swiftlang_Fall2018/swiftlang_Fall2018-1000.11.42/src/swift/stdlib/public/core/ErrorType.swift,第184行 程序以退出代码结束:9

这是我的加入代码。

let booking = Booking.query(on: req).join(\Product.bookings, to:\Booking.product).filter(\.user_id == userID).decode(BookingM.self).all()

【问题讨论】:

    标签: swift postgresql join vapor vapor-fluent


    【解决方案1】:

    首先,使用您的查询,您不需要加入Product 表,因为您从不查询或解码它。

    您的join 声明:

    .join(\Product.bookings, to:\Booking.product)
    

    不正确。您应该加入Product.id 属性,而不是加入Product.bookings 属性,因为产品的ID 就是Booking.product 属性包含的内容。

    因此,您的 Fluent 查询应如下所示:

    let booking = Booking.query(on: req).join(\Booking.product, to:\Product.id).filter(\.user_id == userID).all()
    

    我删除了.decoding 调用,因为查询已经解码了查询结果Booking

    要使用您的 bookings 属性,您的查询将如下所示:

    let booking = product.bookings.query(on: req).filter(\Booking.user_id == userID).all()
    

    【讨论】:

      猜你喜欢
      • 2019-09-30
      • 2018-07-10
      • 2017-08-17
      • 1970-01-01
      • 1970-01-01
      • 2020-11-16
      • 1970-01-01
      • 2017-10-10
      • 2019-05-08
      相关资源
      最近更新 更多