首次尝试使用node.js并制作控制器。我正在使用knex进行查询,使用Q库进行承诺。
我正在尝试链接查询数据库的异步函数,但最终会出现错误:
this.getPosts().then(this.getTags).then(function() ...
如果我仅this.getPosts()
或仅this.getTags()
,则会正确提取它们。
read
功能来自路线。
var db = require('../db');
var Q = require("q");
class IndexController {
constructor(page, data) {
this.page = page;
this.data = data;
}
getTags(){
var deferred = new Q.defer();
db('tags').select().then(function(tags){
this.data.tags = tags;
deferred.resolve();
}.bind(this));
return deferred.promise;
}
getPosts(){
var deferred = new Q.defer();
db('posts').select('*', 'posts.id as id', 'tags.name as tag')
.innerJoin('users', 'posts.user_id', 'users.id')
.leftJoin('post_tags', 'posts.id', 'post_tags.post_id')
.leftJoin('tags', 'post_tags.tag_id', 'tags.id')
.then(function(posts){
this.data.posts = posts;
deferred.resolve();
}.bind(this));
return deferred.promise;
}
read(res){ // <-- FROM ROUTE
this.getPosts().then(this.getTags).then(function(){
res.render(this.page, this.data);
}.bind(this));
}
...
}
答案 0 :(得分:0)
knex已经在使用Promise,因此您不必使用q
。回来吧。
var db = require('../db');
class IndexController {
constructor(page, data) {
this.page = page;
this.data = data;
}
getTags() {
return knex('tags').select().then(function(tags) {
this.data.tags = tags;
return tags
}
}
getPosts() {
return knex('posts').select('*', 'posts.id as id', 'tags.name as tag')
.innerJoin('users', 'posts.user_id', 'users.id')
.leftJoin('post_tags', 'posts.id', 'post_tags.post_id')
.leftJoin('tags', 'post_tags.tag_id', 'tags.id')
.then(function(posts) {
this.data.posts = posts;
return posts
}
}
read(res) { // <-- FROM ROUTE
}
...
}