gpt4 book ai didi

javascript - 我怎样才能在node js服务器中包含css js

转载 作者:行者123 更新时间:2023-12-02 22:49:04 25 4
gpt4 key购买 nike

var http = require("http");
var fs = require("fs");

var todo = http.createServer(function(req, res) {
fs.readFile("./todo.html", function(err, data) {
if (err) {
console.log("no");
} else {
res.writeHead(200, { "Content-Type": "text/html" });
res.end(data);
}
});
});
todo.listen(3000);

这是我的nodejs代码,我不知道如何包含css js文件。我不能只包含 html 文件。我想包含 css js 文件,因为我想通过 nodejs 构建 Web 应用程序

最佳答案

您可以将您的 CSS 包含在 todo.html

<link rel="stylesheet" type="text/css" href="styles.css">

或者对于 JavaScript

<script src="scripts.js"></script>

关于javascript - 我怎样才能在node js服务器中包含css js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58265884/

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