重定向至“索引.html问题”诊断树

Redirect to Index.html issue

本文关键字:诊断 问题 html 索引 重定向      更新时间:2023-09-26

单击时,我想转到索引.html例如,如果用户在浏览器中单击重新加载图标,它将重定向到索引.html使用 ng-click 也是如此。如何在角度js中实现这一点

.HTML:

<div ng="logoutcntrl">
    <ons-button ng-click="logout()"></ons-button>
</div>

Javascript:

function logoutcntrl($scope){
  $scope.logout= function(){
    $location.path="index.html";
  }
}

使用浏览器本机window.location对象及其href属性:

function logoutcntrl($scope) {
  $scope.logout= function() {
    window.location.href = "index.html";
  }
}