我在后端使用 Vapor 3、Swift 5.1、PostgreSQL 12 和 Postico 1.5.10。在 PostgreSQL 数据库中,有一个名为eventDate
type的字段timestamp without time zone
。请看截图:
在 Vapor 中,有一个模型:
import Vapor
import FluentPostgreSQL
final class TestModel: PostgreSQLModel {
var id: Int?
var eventDate: Date
init(eventDate: Date) {
self.eventDate = eventDate
}
}
extension TestModel: Content {
}
extension TestModel: Migration {
}
extension TestModel: Parameter {
}
但是当我试图将Date
(Swift)保存到timestamp without time zone
Vapor 时,我会报错:
[ ERROR ] DecodingError.typeMismatch: Value of type 'String' required for key 'eventDate.date'. (NIOServer.swift:104)
如果在模型中我更改Date
为String
,则 Vapor 会给我这个错误:
[ ERROR ] PostgreSQLError.server.error.transformAssignedExpr: column "eventDate" is of type timestamp without time zone but expression is of type text (NIOServer.swift:104)
所以问题是:如何转移Date
和String
到timestamp without time zone
(或timestamp with time zone
)?
我将不胜感激任何帮助或建议!