带有节点表示的类的渲染方法

时间:2019-04-21 01:19:44

标签: javascript node.js express promise async-await

我有一个带有方法的类,该类应该为我提供API域。 到目前为止也是如此。但是如果我想用Node Express渲染它,我会得到一个带有1.2.3的数组。没有域名。

我认为我的问题出在异步等待中?!

这是我的课堂方法的摘录:

class ISPConfig {
    constructor(base_url, options) {
        this.base_url = base_url;
        this.options = options;
    }

    async _call() {
        ... // gives me the sessionId
    }

    async getDataByPrimaryId(ispFunction, param) {
        try {
        const results = await axios.post(this.base_url + ispFunction, {
            session_id: await this._call(),
            primary_id: param
        });
        return await results.data.response;
        //console.log(results.data.response);
        } catch (err){
            console.log(err);
        }
    }

她是我app.js的片段:

const renderHome = (req, res) => {
    let domains = [],
        message = '';
    let a = new ispwrapper.ISPConfig(BASE_URL, OPTIONS)
    a.getDataByPrimaryId('sites_web_domain_get', { active: 'y' })
        .then(response => {
            for (let i = 0; i < response.length; i++){
                domains = response[i]['domain'].domains;
            }
        })
        .catch(err => {
            message = 'Error when retriving domains from ISPApi';
        })
        .then(() => {
            res.render('home', { // 'home' template file for output render
                title: 'ISPConfig',
                heading: 'Welcome to my ISPConfig Dashboard',
                homeActive: true,
                domains,
                message
            });
        });
};

使用push(domains),我在HTML页面上只能看到1.2.3。

与我的API的三个活动域完全对应。但是只是没有域名。 :(

但是,如果我在for循环中输出console.log(response [i] ['domain']。domains),则会在控制台中获得所有具有名称的域。

有人看到我的错误吗?

这是我的解决方案:

const renderHome = async (req, res) => {
let domain = [],
    message = '';
try {
    let a = new ispwrapper.ISPConfig(BASE_URL, OPTIONS);
    const response = await a.getDataByPrimaryId('sites_web_domain_get', { active: 'y' });

    for (let i = 0; i < response.length; i++){
         domain.push(response[i].domain);
    }
} catch(err) {
    message = 'Error when retriving domains from ISPApi';
} finally {
    res.render('home', { // 'home' template file for output render
        title: 'ISPConfig',
        heading: 'Welcome to my ISPConfig Dashboard',
        homeActive: true,
        domain,
        message
    });
}

};

2 个答案:

答案 0 :(得分:2)

尝试使您的路线异步,例如:

const renderHome = async (req, res) => {
  let domains = [],
      message = '';
  try {
    let a = new ispwrapper.ISPConfig(BASE_URL, OPTIONS)
    const response = await a.getDataByPrimaryId('sites_web_domain_get', { active: 'y' })

    for (let i = 0; i < response.length; i++){
      domains.push(response[i].domain);
    }
  } catch(err) {
    message = 'Error when retriving domains from ISPApi';
  } finally {
    res.render('home', { // 'home' template file for output render
      title: 'ISPConfig',
      heading: 'Welcome to my ISPConfig Dashboard',
      homeActive: true,
      domains,
      message
    });
  }
};

答案 1 :(得分:0)

是的,未定义不再是问题。但是,如何使域显示在HTML页面上?电话是灰色的。

enter image description here