egg-bookshelf 版本 | egg 1.x |
---|---|
1.x | 😁 |
0.x | ❌ |
// config/plugin.js
exports.bookshelf = {
enable: true,
package: 'egg-bookshelf',
};
- Why and What: 描述为什么会有这个插件,它主要在完成一件什么事情。 尽可能描述详细。
- How: 描述这个插件是怎样使用的,具体的示例代码,甚至提供一个完整的示例,并给出链接。
knex 支持自动和手动提交
const trx = yield app.knex.transaction();
try {
yield trx.insert(row1).into('table');
yield trx('table').update(row2);
yield trx.commit()
} catch (e) {
yield trx.rollback();
throw e;
}
const result = yield app.knex.transaction(function* transacting (trx) {
yield trx(table).insert(row1);
yield trx(table).update(row2).where(condition);
return { success: true };
})
请到 config/config.default.js 查看详细配置项说明。
请到 egg issues 异步交流。