我如何获得 TobaccoProduct_0、TobaccoProduct_1、TobaccoProduct_2 的价值。
目前我正在尝试使用此代码,但它不起作用
for (var count = 0; count < $scope.ProductCount; count++) {
    if ($scope.TobaccoProduct_[count] == true) {
        $("#SmokeReview").submit();
    } else {
        alert("plz chcek atleast one value");
    }
}