gpt4 book ai didi

angularjs - 将快速路由重定向到 Angular 页面

转载 作者:太空宇宙 更新时间:2023-11-04 02:15:14 25 4
gpt4 key购买 nike

我有开发 Angular 应用程序的经验,但我对平均堆栈很陌生,我正在尝试平均堆栈并正在运行一个快速服务器和一个正在运行的 Angular 站点。我的 Express 主要用于我的 REST api,但希望有一个入口点,在服务器 URL 未知的情况下指向我的客户端:server.js:

    // Setup View Engines
app.set('views', path.join(__dirname, 'public'));
app.engine('html', require('ejs').renderFile);
app.set('view engine', 'html');

// Serve files from your "public" directory
app.use('/public', express.static(path.join(__dirname + 'public')));

// Serve files from your "bower_components" directory
app.use('/bower_components', express.static(path.join(__dirname + '/bower_components')));

// GET index.html route
app.get('/', function(req, res) {
return res.render('index');
});

我的 Angular 驻留在公共(public)文件夹中,这是我的index.html 文件:

    <!DOCTYPE html>
<html ng-app="havuraApp">
<head lang="en">
<meta charset="UTF-8">
<title></title>
</head>
<body>
<div>
main
<ui-view></ui-view>
</div>

</body>

<script src="../bower_components/angular/angular.js"></script>
<script src="../bower_components/angular-ui-router/release/angular-ui-router.js"></script>
<script src="../bower_components/angular-ui-bootstrap/index.js"></script>
<script src="../bower_components/angular-resource/angular-resource.js"></script>
<script src="app.js"></script>


<!--services-->
<script src="Services/svcModule.js"></script>
<script src="Services/userSvc.js"></script>
<!--dashboard-->
<script src="Views/dashboard/dashboard.module.js"></script>
<script src="Views/dashboard/config.route.js"></script>
<script src="Views/dashboard/dashboard.js"></script>
</html>

如果我点击 Angular 站点index.html,我会加载正确的默认路由页面,但是当我使用快速路由点击它时,它仅加载html,而不加载其中的ui-view部分。

任何帮助将不胜感激。

最佳答案

我认为问题出在你的html上。您指向尚未声明为公共(public)的 node_modules 目录。我建议您使用任务运行程序将 dist 文件从那里复制到您的公共(public)目录,而不是向公众开放 node_modules 。

关于angularjs - 将快速路由重定向到 Angular 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36066530/

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