处理' undefined' Meteor.method

时间:2017-06-29 19:25:11

标签: meteor fullcontact

我已在我的Meteor应用程序中创建了一个功能,该功能设置为“丰富”#39;流星集合中包含的数据。该函数用于迭代集合,利用fullcontact API在数据库中维护的所有客户端条目上提取其他数据(即LinkedIn Bio;员工人数等)。

问题在于并非所有数据点都可用于集合中的所有元素(例如,客户端可能没有LinkedIn配置文件)。该函数适用于最初的元素,但最终无法抛出TypeError: Cannot read property '2' of undefined,因为data variable不包含公司的LinkedIn Profile生物(对于此特定示例)。

你建议做什么锻炼?有任何想法吗?非常感谢您的帮助 - 我已经在这里待了几个小时。

Meteor.methods({
  enrichment() {
    var fullcontact = new FullContact(Meteor.settings.fullContact);
    for (var i = 1; i < customerDb.find({ company: "Qualify" }).count(); i++) {
      var url = customerDb.findOne( { company: "Qualify", 'item.clientId': i.toString() } )['item']['contact_website'];
      var data = fullcontact.company.domain(url);
      if ( data['status'] == 200 ) {
        customerDb.update ({ 
          company: "Qualify", 'item.clientId': i.toString()
        }, {
          $push: {
            bio: data['socialProfiles'][2]['bio'],
            keywords: data['organization']['keywords'],
            employees: data['organization']['approxEmployees'],
            domesticTrafficRank: data['traffic']['topCountryRanking'][0],
            globalTrafficRank: data['traffic']['ranking'][0]
          }
        });
      } else {
        console.log('Data could not be found on the company')
      }
    }
  }
});

1 个答案:

答案 0 :(得分:0)

基于@chazsolo的建议,您可以使用javascript AND和OR处理可能缺失的数据和密钥。这是一种常见的防御性编码模式。

如果缺少任何父键或缺少数组元素,则每个项目将替换为空字符串。如果您对可能遗漏的内容有更多了解,可以简化此操作。在某些情况下,您可能还需要数字而不是字符串。

if ( data['status'] == 200 ) {
  const bio = data['socialProfiles'] && data['socialProfiles'][2] && data['socialProfiles'][2]['bio'] || '';
  const keywords = data['organization'] && data['organization']['keywords'] || '';
  const employees = data['organization'] && data['organization']['approxEmployees'] || '',
  const domesticTrafficRank = data['traffic'] && data['traffic']['topCountryRanking'] && data['traffic']['topCountryRanking'][0] || '',
  const globalTrafficRank = data['traffic'] && data['traffic']['ranking'] && data['traffic']['ranking][0] || '';

  customerDb.update (
    { company: "Qualify", 'item.clientId': i.toString() },
    { $push: { bio, keywords, employees, domesticTrafficRank, globalTrafficRank }}
  });