私はこのコードを持っています:
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'));
},
"abcd" の localStorage にエントリが保存されていない場合、 $scope.option.selectedPageType を値 0 に設定するにはどうすればよいですか?