gpt4 book ai didi

angularjs - 删除 # 字符导致应用程序在 Angular 中无法正常工作

转载 作者:行者123 更新时间:2023-12-04 04:45:13 27 4
gpt4 key购买 nike

我用过 index.html对于我的页面的主人,我有部分 View ng-view$routeProvider .我删除后 #来自 URL 的字符(带有 html5mode)我的应用程序不能使用 URL(默认路由除外)。当新选项卡返回 404 错误时,也会打开页面。应用程序找不到 index.html .当我单击浏览器中的链接时,一切正常

<!DOCTYPE html >
<html ng-app="myApp">
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<!-- CSS File -->
<!-- JS File -->
<title></title>
</head>
<body>
<div class="container" ng-controller="RootController">
<!-- Header Of Page -->
<div class="header">
<a href="" class="header_logo">
<img src="img/logo.png">
</a>
<a href="" class="header_name">
</a>
<a href="{{ link }}" class="header_signOut">
</a>
</div>
<!-- Separator Line -->
<div class="separator"></div>
<!-- Rendered By AngularJS -->
<div class="myClass" ng-view></div>
<!-- Footer -->
<div class="footer"></div>
</div>
</body>
</html>

这是路由
when('/', {
controller: OperatorController,
templateUrl: 'html/operator.html'
}).

when('/simReport', {
controller: SimReportController,
templateUrl: 'html/simReport.html'
}).

最佳答案

我有同样的问题。

发生这种情况是因为当您直接加载页面而不是从应用程序内的链接加载时,angular 尚未加载,因此处理请求的是服务器路由器,而不是 angular 的。
如果您使用服务器来为您的 angular 应用程序提供服务,您需要更新它的路由器,以便任何应该由 angular 处理的 url 都需要重定向到您的 index.html(因此 angular 可以加载并执行它的路由)。

如果您使用 grunt/yeoman 加载您的 angular 应用程序,我可以用更多详细信息编辑我的答案

关于angularjs - 删除 # 字符导致应用程序在 Angular 中无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18299435/

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