有没有办法在 AngularJS 指令中调用orientationchange 事件?
我目前正在使用角砌体,并且正在尝试在移动设备的方向发生变化时更新/刷新砌体。
我找到了这个,但我想知道如何使用 Angular 中的 $window 服务来做到这一点
window.addEventListener("orientationchange", function() {
// Announce the new orientation number
console.log(window.orientation);
}, false);