羽毛膝关节 的数据库适配器,Postgres、MSSQL、MySQL、MariaDB、SQLite3 和 Oracle 的 SQL 查询构建器。 npm install --save mysql knex feathers-knex 重要提示: feathers-knex实现了和。 注意:您还需要为要使用的 DB。 应用程序接口 service(options) 返回使用给定选项初始化的新服务实例。 const knex = require ( 'knex' ) ; const service = require ( 'feathers-knex' ) ; const db = knex ( { client : 'sqlite3' , connection : { filename : './db.sqlite' } } ) ; // Create th
1