gpt4 book ai didi

node.js - Angular Universal 只显示第一页的页面源

转载 作者:行者123 更新时间:2023-12-05 03:57:23 28 4
gpt4 key购买 nike

我有一个在共享网络服务器上运行的 Angular 通用网络应用程序。我使用我的 DirectAdmin 中名为 NodeJS Selector 的工具运行它。有了这个,我可以 npm install 和 server:ssr server.js 文件。它工作正常,我可以浏览到我的所有页面并看到所有内容。

问题 但是在页面源中。当我转到基本 url (www.example.com/) 并右键单击 =>“查看页面源代码”时,我可以看到主页的内容,就像 Universal 应该做的那样。但是当我转到任何其他页面时,我看不到页面源中的内容,只能看到 app-root 标记。

我觉得这与路由器模块有关,我的 server.ts 中的某些东西,甚至可能与运行服务器的 Apache 中的配置有关,但我无法弄清楚它是什么。

我也试过用 pm2 运行我的应用程序,但那根本无法加载通用。使用 pm2 我只在页面源代码中看到了 app-root 标签。我运行的 pm2 实例每天都消失了,即使在运行实例上执行“pm2 保存”时也是如此。第二天,当我进入 SSH 并执行“pm2 list”时,那里什么也没有...所以这就是为什么我切换到 NodeJS 选择器工具,它现在已经运行一半了。

这是我的 app-routing.module.ts(为简洁起见,留下了一些路径和导入):

const routes: Routes = [
{ path: 'generators', component: GeneratorComponent },
{ path: 'about', component: AboutComponent},
{ path: 'disclaimer', component: DisclaimerComponent},
{ path: 'privacy-policy', component: PrivacyPolicyComponent},
{ path: '', component: HomeComponent },

// otherwise redirect to home
{ path: '**', redirectTo: '' }
];

@NgModule({
imports: [RouterModule.forRoot(routes, { initialNavigation: 'enabled', scrollPositionRestoration: 'enabled'})],
exports: [RouterModule]
})
export class AppRoutingModule { }

服务器.ts:

import 'zone.js/dist/zone-node';

import * as express from 'express';
import {join} from 'path';

// Express server
const app = express();

const PORT = process.env.PORT || 4000;
const DIST_FOLDER = join(process.cwd(), 'dist/browser');

// * NOTE :: leave this as require() since this file is built Dynamically from webpack
const {AppServerModuleNgFactory, LAZY_MODULE_MAP, ngExpressEngine, provideModuleMap} = require('./dist/server/main');

// Our Universal express-engine (found @ https://github.com/angular/universal/tree/master/modules/express-engine)
app.engine('html', ngExpressEngine({
bootstrap: AppServerModuleNgFactory,
providers: [
provideModuleMap(LAZY_MODULE_MAP)
]
}));

app.set('view engine', 'html');
app.set('views', DIST_FOLDER);

// Example Express Rest API endpoints
// app.get('/api/**', (req, res) => { });
// Serve static files from /browser
app.get('*.*', express.static(DIST_FOLDER, {
maxAge: '1y'
}));

// All regular routes use the Universal engine
app.get('*', (req, res) => {
res.render('index', { req });
});

// Start up the Node server
app.listen(PORT, () => {
console.log(`Node Express server listening on http://localhost:${PORT}`);
});

有谁知道为什么只有首页在浏览器的页面源中显示内容而所有其他页面只显示 app-root 标签?

更新

这是我的 .htaccess 文件,如果有帮助的话:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>

我让我的网络主机编辑 Apache 的 httpd.conf 文件,将代理设置为端口 4000,并将文档根目录设置为我的索引文件所在的位置:

 DocumentRoot "/domains/appname.com/public_html/browser"

<Proxy *>
Order allow,deny
Allow from all
</Proxy>
ProxyPreserveHost On
ProxyRequests Off
ProxyPass / https://localhost:4000/
ProxyPassReverse / https://localhost:4000/

我是否应该向 Apache 添加更多配置以使其他页面在服务器端呈现?

最佳答案

如果您使用 Angular Universal 在服务器端进行渲染,您需要将 .htaccess 重写规则移除到 index.html。 Node 服务器现在将处理所有传入路由的请求,因此不应再进行重写。

关于node.js - Angular Universal 只显示第一页的页面源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58570296/

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