gpt4 book ai didi

AngularJs : using $location. path() 改变 View 但它需要一些时间来加载

转载 作者:行者123 更新时间:2023-12-02 01:27:23 25 4
gpt4 key购买 nike

我只是做一个常规的 $location.path 来加载我的模板,这将访问我的服务器并更改 View 。模板同时更改,但加载 View 需要一些时间。

   $scope.xxx= function () {
$location.path("xxxx");
}

只是为了交叉检查,我删除了 View 的所有内容(hello world 除外)以及 Controller 中的所有内容,但我不知道这里出了什么问题。

.when('/xxx', {
templateUrl: '/users/xxx',
controller: ''
})

最佳答案

我遇到了同样的问题 $location.path 需要时间来加载页面。我在 location.path 之后使用 $route.reload() 重新加载,这对我有用。下面我提到了我使用的代码。

      if (result.status === "invalid"){
$location.path('/basic-profile');
$route.reload();
}

希望这对你有用:)。

关于AngularJs : using $location. path() 改变 View 但它需要一些时间来加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36315453/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com