gpt4 book ai didi

javascript - 在没有模板引擎的情况下将express路由到ng2

转载 作者:行者123 更新时间:2023-11-28 05:42:26 24 4
gpt4 key购买 nike

我已经生成了默认的 Express 应用程序,我将其修改为在其 app.js 文件中包含以下几行。

app.set('views', path.join(__dirname, '/views'));
app.engine('html', require('jade').renderFile);
app.set('view engine', 'html');

在./views目录中,我原来有layout.jadeindex.jadeerror.jade。好的,到目前为止一切顺利。当项目运行时,我会显示索引或错误布局。

现在...我想添加一个最小的 Angular2 安装,以便让 ng2 管理当前 index.jade 所在的 1 页应用程序。

所以我放了一个app.component.ts:

import { Component } from '@angular/core';

@Component({
selector: 'my-app',
template: '<h1>My First Angular 2 App</h1>'
})

export class AppComponent { }

和一个 main.ts 文件:

import { bootstrap }    from '@angular/platform-browser-dynamic';
import { AppComponent } from './app.component';
bootstrap(AppComponent);

然后我将 index.jade 更改为 index.html 并添加:

<html>
<head>
<title>Angular 2 QuickStart</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../public/stylesheets/style.css">
<!-- 1. Load libraries -->
<!-- Polyfill(s) for older browsers -->
<script src="node_modules/core-js/client/shim.min.js"></script>
<script src="node_modules/zone.js/dist/zone.js"></script>
<script src="node_modules/reflect-metadata/Reflect.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<!-- 2. Configure SystemJS -->
<script src="systemjs.config.js"></script>
<script>
System.import('app').catch(function(err){ console.error(err); });
</script>
</head>
<!-- 3. Display the application -->
<body>
<my-app>Loading...</my-app>
</body>
</html>

但是,使用 html 模板引擎和新的 error.htmlindex.html 文件,我总是显示错误页面,而不是我的 ng2 托管索引。有什么想法吗?

最佳答案

现在最好的选择是使用 ejs(引擎)并将其配置为接受和渲染 html。

代码:

app.set('views', path.join(__dirname, 'views'));
app.set(' View 引擎', 'ejs');//模板引擎

app.engine('html', require('ejs').renderFile);//将引擎转为使用html

注意:您的所有 View 或模板都应采用 .html 扩展名

关于javascript - 在没有模板引擎的情况下将express路由到ng2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38813581/

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