当我在app.js中使用cache:false时,Angular js没有将scope.watch值传递给其他控制器。当我不使用cache:false时,我可以传递值。请帮助别人
.state('tab.dash', {
url: '/dash',
cache: false,
views: {
'tab-dash': {
templateUrl: 'templates/tab-dash.html',
controller: 'DashCtrl'
}
}
})