文章详情页
node.js - nojs的response.write()如何返回一个html
浏览:332日期:2023-10-02 18:57:04
问题描述
本人学生,正在钻研js。由于听人说前段开发也需要习惯在本地环境中开发web页面就选择了node作为本地环境。已搭建一个简单node服务。
这是代码
var http = require('http');//var path = require('path');http.createServer(function(requrest,response){response.writeHead(200,{'Content-Type': 'text/plain'});//var index = path.extname(’./index.html’);var index = ’<!DOCTYPE html>’+’<html>’+’<head>’+’<meta charset='utf-8'>’+’<title>你好nodejs</title>’+’</head>’+’<body>’+’node.js’+’</body>’+’</html>’;response.write(index);response.end();}).listen(8888);
在我从浏览器访问时直接返回了字符串如图
我还写了一个html文件但是不知道如何让node返回这个index.html给浏览器希望有朋有可以指点以下

问题解答
回答1:
标签:
HTML
上一条:node.js - 使用npm安装vue-cli后,vue还是不可用是什么原因?下一条:html5 - express4 + socket.io 如何在connection的回调外边使用socket.emit方法
相关文章:
1. python - 正则表达式匹配和原生字符的问题2. CSS3中background-size的问题3. python - pymysql建立连接出错4. css3 - Firefox 字号相对IE、Chrome更大,如何在CSS中统一?5. javascript - vue webpack打包问题6. 网页爬虫 - python requests爬虫,如何post payload7. PHP试题,帮忙解答8. python该种情形下应该使用pickle还是csv9. nginx反向代理配置访问后台,基础问题?10. python - 使用ajax向django后台请求静态页面,返回200,但是页面不渲染出来
排行榜

网公网安备