我有一个 Json 对象数组
posturlContent = [
{ "Title": "Bbc news live", "Content": "<div>this is a test BBC </div>", "Uri": "http://bbc.co.uk" },
{ "Title": "CNN news live", "Content": "<div>this is a test CNN</div>", "Uri": "http://cnn.com" },
{ "Title": "Youtube news live", "Content": "<div>this is a test Youtube </div>", "Uri": "http://youtube.com" },
];
我有一个 JS 数组
uris =["http://cnn.com", "http://abcnews.com",...]
我需要检查 posturlContent Json obejct 中是否存在任何 uris 数组元素,并找到不存在的元素。我知道的唯一方法是做嵌套循环。
我可以使用更简单的 .inArray 或 Contains 函数吗?