gpt4 book ai didi

CSS 在 a2hosting 上使用 node.js 抛出 503 错误

转载 作者:行者123 更新时间:2023-12-02 16:28:03 26 4
gpt4 key购买 nike

我遵循了关于在 a2hosting 上设置 node.js 的精彩教程:https://www.youtube.com/watch?v=BAD5JyOymRg

除了 CSS 无法在 Firefox 或 Chrome 中加载并且由于某种原因抛出 503 错误外,一切似乎都正常。如果我将 href 指向任何文件,它也会抛出 503 错误。我曾尝试将 href 链接更改为 /stylesheets/style.css 或移动 style.css,但没有成功。

如有任何帮助,我们将不胜感激!

服务器.js:

var express = require('express');
var app = express();
var path = require('path');

app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'ejs');

app.use('/testapp/static', express.static('public'));

app.get('/testapp', (req, res) => {
res.render('index', { title: 'Express' });
});

app.listen();

package.json:

{
"name": "app",
"version": "1.0.0",
"description": "My App",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"express": "^6.14.7",
"ejs": "~2.6.1"
},
"author": "",
"license": "ISC"
}

index.ejs:

<!DOCTYPE html>
<html>
<head>
<link rel='stylesheet' href='http://*mysite*.com/testapp/static/stylesheets/style.css' />
</head>
<body>
<h1>Hello <%=title%></h1>
</body>
</html>

样式.css:

body {
background-color: red;
}

文件夹结构如下:

testapp
-public
--stylesheets
---style.css
-views
--index.ejs
-server.js
-package.json
-node_modules

最佳答案

如果您能够看到 html 而不是 CSS,请尝试在指定目录位置的地方调整第二个参数。

app.use('/testapp/static', express.static('public'));

您提供给 express.static 函数的路径是相对于您启动 Node 进程的目录 ( link )。

我提供了一个示例代码,您可以引用我在目录内和目录外放置一个文件夹的位置。 - https://codesandbox.io/s/sweet-grass-0dxvh?file=/testapp/server.js

关于CSS 在 a2hosting 上使用 node.js 抛出 503 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64015860/

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