我有一个看起来像这样的脚本:
function bakVormShipping(targetClass) {
$.getJSON('http://shop.com/cart/?format=json', function (data) {
$.each(data.cart.shipping.methods, function (index, methods) {
if (index == "core|2419|36557" || index == "core|2419|36558" || index == "core|2959|31490" || index == "core|2959|31491" || index == "core|2419|36556") {
$('<strong/>').html('€' + (+methods.price.price_incl).toFixed(2)).appendTo(targetClass);
}
});
});
}
当“索引”不等于索引之一时,我在萤火虫中收到未定义或空错误。我怎样才能防止这种情况?显然与if (index == null)
等有关,但我不知道如何以正确的方式做到这一点。