我正在使用值填充java脚本数组,当我尝试访问它们时,我得到了未定义的数组。阵列是否有不同的范围或?在第一个console.log中,数组是正常的,第二个是未定义的。
var pdfEditArray = new Array();
$scope.previewPdf = function () {
getForamatedPdf(fileName, $scope.pdfVertical, $scope.pdfHorisontal, $scope.pdfControl.ControlText).then(function (response) {
pdfEditArray.push({ pdfId: '1', controlId: '2', pageNumber: '3', vertical: '4', horisontal: '5' });
})
console.log(pdfEditArray);
}
$scope.savePdfFormat = function (pdfEditArray) {
console.log(pdfEditArray);
}