2020年7月31日 星期五

使用 $timeout 注意

$scope destroy 時要 cancel,因為不會自動取消呼叫,若固定周期呼叫則會持續呼叫
$scope.timer = $timeout($scope.onTimeout, 10000);
 $scope.$on(
        "$destroy",
        function (event) {
            $timeout.cancel($scope.timer);
        }
    );

強制網頁不要被瀏覽器翻譯影響

中翻中會變得很奇怪,使用以下設定禁止翻譯網頁 <html lang="zh-Hant-TW" translate="no" class="notranslate"> <head>     <...