我有这个代码:
getPageTypes: function ($scope) {
$scope.option.pageTypes = [
{ id: 0, type: 'Edit Basic' },
{ id: 1, type: 'Edit Standard' },
{ id: 2, type: 'Report' }
];
$scope.option.selectedPageType = parseInt(localStorageService.get('xxx'));
},
如果在 localStorage 中没有为 "abcd" 存储条目,如何将 $scope.option.selectedPageType 设置为值 0?