如何在 Objection.js 中管理验证与原始值

How to manage Validation vs raw values in Objection.js

我在 Objection.js 中有这个模型:

class UserAccess extends Model {
    static get tableName() {
        return 'user_access'
    }

    static get jsonSchema() {
        return {
            type: 'object',
            properties: {
                id: {
                    type: 'integer'
                },
                user_id: {
                    type: 'integer'
                }
                timestamp: {
                    type: 'string',
                    format: 'date-time'
                },
            },
            additionalProperties: false
        }
    }

    $beforeInsert() {
        this.timestamp = this.$knex().raw('now()')
    }

    static async insert(data) {
        const result = await this.query().insert(data)
        return result.id
    }

我需要在 timestamp 列中插入 数据库时间 。 Objection执行验证时,timestamp的值是Raw Knex Function:

的一个实例
Raw {
  client:
   Client_MySQL2 {
     config: { client: 'mysql2', connection: [Object] },
     connectionSettings:
      { user: '',
        password: '',
        host: '',
        database: '' },
     driver:
      { createConnection: [Function],
        connect: [Function],

// continues

所以当执行验证时,返回错误,因为它不是字符串:

Validation error: "timestamp" should be a string

有没有办法使用数据库时间并且保持验证

您必须使用“.then()”链接查询构建器才能获得查询结果或使用 async/await。这可能有效:

async $beforeInsert() {
    this.timestamp = await this.$knex().raw('now()')
}

或:

$beforeInsert() {
   this.timestamp = this.$knex().raw('now()').then(function(result) {
      console.log(result)
   })
}

https://knexjs.org/#Interfaces