This commit is contained in:
suwenxiong 2019-01-19 12:17:31 +08:00
commit 23adaaa4e5
2 changed files with 10 additions and 6 deletions

View File

@ -35,10 +35,11 @@ class statisMockModel extends baseModel {
return this.model.countDocuments({});
}
getDayCount(timeInterval) {
async getDayCount(timeInterval) {
let end = timeInterval[1];
let start = timeInterval[0];
return this.model.aggregate([
let data = [];
const cursor = this.model.aggregate([
{
$match: {
date: { $gt: start, $lte: end }
@ -53,8 +54,11 @@ class statisMockModel extends baseModel {
{
$sort: { _id: 1 }
}
]).cursor({}).exec().toArray();
}
]).cursor({}).exec();
await cursor.eachAsync(doc => data.push(doc));
return data;
}
list() {
return this.model.find({}).select('date').exec();

View File

@ -131,11 +131,11 @@ class WikiPage extends Component {
};
this.handleWebsocketAccidentClose(sendEditor, status => {
// 如果websocket 启动不成功用户依旧可以对wiki 进行编辑
if (!status) {
// if (!status) {
this.setState({
isEditor: !this.state.isEditor
});
}
// }
});
};