$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> <...