-
## DESC
development环境下 用命令行 执行脚本,不能正常退出
testing
production模式下 没问题
## ENV
Platform: mac
Node.js Version: v6.7.0
ThinkJS Version: 2.2.15
-
## DESC
logic中,数组array参数为非必须时,并没有传该参数的情况下,解析为数组[null]
### ENV
OS Platform:
Node.js Version:
ThinkJS Version: 3.2.8
### logic code
```js
editAction() {
this.allowMethods = 'post';
…
-
使用关联查询 子表的where怎么传入呢 官网找不到相关传入的方式
-
## DESC
`model.field(['limit']).select(); `
如果获取的字段名为`limit` 则只返回一条数据,且为所有字段
## ENV
Platform: macOS Sierra
Node.js Version: 6.10.0
ThinkJS Version: 2.2.x
cyyjs updated
6 years ago
-
## DESC
使用typescript调用Promise方法时,无法使用await,提示 'Operand for 'await' does not have a valid callable 'then' member.'
如图:
![image](https://cloud.githubusercontent.com/assets/2117890/21259359/fc00f35c-c…
-
现在遇到这样一个问题,
model中的已有的一个方法开启了事务,但现在有第二个方法,也需要开启事务,但又调用了前面那个方法。我估计这样会出问题,所以来确认一下。
代码大致如下:
```
async func1(){
this.transaction(async()=>{
……
}
}
async func2(){
this.trans…
-
如题。
看到对mongo的支持直接实现在thinkjs的model以及adapter包内,那么要支持其他数据库需要的支持应该在哪里实现才能无缝集成呢?
-
```
updatedAt: {
// 到时候只要更新这个更新时间就可以保证Session不过期
type: Date,
default: Date.now,
expires: config[config.env].session.ttl
}
```
现在mongodb支持类似于redis的expires过期时间设置,强烈建议thinkjs的mongodb的mod…
arden updated
6 years ago
-
## DESC
在很多地方启用了事务,有时会整个数据库都会阻塞,只能重启服务器
有可能是我在某些地方使用`this.db()`没有指定正确的连接,这种情况应该怎么定位错误呢,访问量比较大,看日志找不到,有没有自动重启的方法,或者有没有其他引起这种情况的可能
### ENV
OS Platform:Ubuntu 16.04.2 LTS
Node.js Version:8.9.3…
-
## DESC
rest 4个action中的获取参数表述错误,
async postAction() {
console.log("postAction");
let data = this.post(); 获取的post 数据为空,
应该改为 let data = this.get();
4077725@qq.com 附带视频录像&教程
## ENV
…