我正在解析一个对象数组,每个对象大约有12个字段。我使用两个嵌套的for(var i = 0; i < array.length; i++)
函数执行此操作,并在null
字段中遇到了几个响应。
我希望得到一个嵌入式对象... "caption": {"id":"some id", "text":"some text"}
,但在某些情况下我会获得null
。我的架构不要求字段有值,但文档会被删除。
我该如何解决这个问题?期望null只是插入一个空值,但事实并非如此。我在Meteor.js框架内工作,但我需要帮助的片段只是简单的旧javascript和mongodb upsert。错误发生在caption.text行。
Meteor.methods({
'getMethod': function (var1, var2) {
check (var1, Number);
this.unblock();
var url = "https://www.url.com/"+var1+"/stuff?"+token+"¶m="+var2;
var result = HTTP.call("GET", url);
if(result.statusCode===200) {
var aArray = JSON.parse(result.content).data;
for(var i = 0; i < aArray.length; i++){
var id = aArray[i].id;
var aItem = {
_id: aArray[i].id,
userId: aArray[i].user.id,
username: aArray[i].user.username,
created_time: parseInt(aArray[i].created_time),
type: aArray[i].type,
caption: aArray[i].caption.text, // THIS LINE IS THROWING THE ERROR !!
}
Collection.upsert(id, {$set: aItem}, {validationContext: 'upsertForm'}, function(error, result) {
if (error){
console.log("Error:", error);
return aArray;
}
});
}
} else {
console.log("Error: ", result.statusCode);
var errorJson = JSON.parse(result.content);
throw new Meteor.Error(result.statusCode, errorJson.error);
}
},
});
答案 0 :(得分:1)
使用三元组检查标题上是否有文字属性:
caption: (aArray[i].caption.text) ? aArray[i].caption.text : ''
编辑:如果标题属性有问题,请使用以下内容:
caption: (aArray[i].caption) ? aArray[i].caption.text : ''
h / t RobG