在node.js中读取Excel的嵌入式对象

时间:2018-06-26 07:29:50

标签: node.js exceljs

我正在使用exceljs来读取node.js中的excel文件。 我可以使用此模块读取文本数据,但是如何从node.js中的excel文件读取嵌入式对象?

非常感谢。

1 个答案:

答案 0 :(得分:0)

要使用node.js从excel读取文本数据,可以使用以下代码,

router.beforeEach(async (to, from, next) => {
  if (to.meta.signUpRequired && from.name) {
    const { data: { getCurrentUser } } 
      = await apolloProvider.defaultClient.query({
      query: USER_INFO_QUERY
    });
    if (getCurrentUser && getCurrentUser.isCollectionAttendee) {
      return next();
    }
    return next('/');
  }
  return next();
});

我不知道如何使用exceljs读取嵌入式对象。