多个异步/等待Try-Catch块

时间:2017-07-31 02:50:09

标签: javascript node.js asynchronous async-await

我在这里是因为我在调试我的应用程序时遇到了麻烦。不明白为什么我的应用程序崩溃非常烦人。我正在使用promises(使用then / catch块)但我仍然需要使用async / await。

我有一种方法可以对其进行多次等待。这里的问题是,如果我的应用程序崩溃,因为任何原因,我永远不知道它的问题是什么。我已经像这样描述了这个块:

         static async processCSGOGroupsAndUsers (groupName)  {

    try{
        const csgoApiData = await csgoApi(groupName);

        const parsedData = await xmltojson(csgoApiData);

        const id = parsedData.memberList.groupID64;
        //const members = await retrieveMembers(groupName, parsedData.memberList.memberCount);
        const totalUsers = await UsersService.processCSGOUsers(id, parsedData);

        const csgoGroup = {
            name: parsedData.memberList.groupDetails.groupName,
            siteUrl: parsedData.memberList.groupDetails.groupURL,
            id,
            totalUsers
        };

        await GroupsDao.save(csgoGroup);

    }catch (err){
        return err;
    }

}


  static async processCSGOUsers (groupId, parsedData) {

    try{

        let steamIdsArr = [];

        const usersSteamIdsObj = parsedData.memberList.members.steamID64;

        Object.keys(usersSteamIdsObj).forEach(key => {
            //if (steamIdsArr.length < 2)  // TODO csGOBackPackAPI don't let me do more than 50 request per hour
                steamIdsArr.push({
                    steam_group_id_64: groupId,
                    steam_id_64: usersSteamIdsObj[key]
                });
        });

        //const filteredUsers =  await UserService.filterUsersByInventoryValue(steamIdsArr);
        UsersDao.saveUsers(steamIdsArr);

    }   catch(err){

        console.log(err);

        return err;
    }
}

static processCSGOGroups(req, res){
    GroupService
        .processCSGOGroupsAndUsers(req.body.group)
        .then( () => res.status(200).end())
        .catch( error => res.status(400).send(error));

}

有没有比我的方法更好的方法?

1 个答案:

答案 0 :(得分:0)

我创建了一个NPM软件包来帮助解决这种情况。 https://www.npmjs.com/package/@simmo/task

以下显示了用法示例。这样做的想法是,它应该有助于消除使用条件逻辑进行的try / catch替换-希望有助于使所有内容更具可读性! :)

import task from '@simmo/task'

const { error, data } = await task(fetch('/some-api'))

if (error) {
  // Failure
  console.error(error)
} else {
  // Success
  console.log(data)
}