app.controller('BIHomeCtrl', ['$scope', '$sce','$state', function ($scope, $sce,$state) { $scope.mytitle="BI首页" //BiFrame //window.frames['BiFrame'].location.href = BIHome; $scope.homeurl = $sce.trustAsResourceUrl(BIHome); $scope.toHome = function () { $state.go("app.main"); } }])