gpt4 book ai didi

javascript - 如何在AngularJS中维护404页面的url

转载 作者:行者123 更新时间:2023-11-28 08:11:02 27 4
gpt4 key购买 nike

我们正在开发一个 angularjs 应用程序,用户可以在其中将他或她的个人资料作为简历发布。

例如,如果用户有已发布的个人资料,则以下 url 有效:

www.page.com/public/johnsmith

但是如果出现

www.page.com/public/johnsmith2345

这不是公开的个人资料,我想显示 404 页面。问题是,由于 Angular 的路由,我必须重定向到 404 页面,因此 url 将被重写为

www.page.com/404.

维护原始 url 甚至使其在 IE9 中工作的正确实现是什么?

最佳答案

据我所知,执行此操作的唯一方法是在 Controller / View 中处理此问题。例如

$routeProvider.when('/public/:user', 
{
templateUrl: 'profile.html',
controller: 'profileCtrl',
resolve: {
userProfile: {
//Try and load the user's profile. Resolve null if the profile can't be found
}
}
}
);

var profileCtrl = function($scope, userProfile) {
$scope.userProfile = userProfile;
}

个人资料.html:

<div ng-if="!userProfile">
<div ng-include="404page.html"></div>
</div>
<div ng-if="userProfile">
... Profile view here
</div>

关于javascript - 如何在AngularJS中维护404页面的url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24206552/

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