关于本站
“最难不过坚持”
本人承接扒站仿站,php网站维护,病毒查杀,网站编辑,网站改版,html制作
有需要网站维护,改版,病毒查杀,网站编辑,网站备案,html制作等相关的工作可以联系我。
本人有多年相关工作经验,也可提供免费咨询,交个朋友。
有需要探讨问题的朋友,也可以加我微信,共同探讨!
微信:15011482830 QQ:408917339
2655
39
分类目录
最新评论
- https://jueru.net/
-
- :weixiao:
-
- :shuijiao: :weiqu: :zhenbang: :leng:
-
- :yiwen: :yiwen: :yiwen: :yiwen:
-
- 这个业务逻辑多少都有点奇怪了,阅读浏览次数增值在新闻详情页的控制器方法里setInc,这怎么还写进模型事件里了。如果非要用onAfterRead也可以,把新闻文章的内容单独分出来一个news_content表,然后把它和news做关联,然后给news_content表的onAfterRead事件做增值处理,这样点进新闻页内查询到文章内容时才会触发它。
-
文章标签更多
打开边栏(ESC)
关闭边栏(ESC)
1,http创建基本的web服务器
const http = require('http') // 创建web服务器实例 const server = http.createServer() // 为服务器实例绑定request事件,监听客户端的请求 server.on('request',function(req,res){ const url = req.url const method = req.method const str = `You request url is ${url},and request method is ${method}` console.log(str); // 设置Content-Type响应头,解决中文乱码的问题 res.setHeader('Content-Type','text/html;charset=utf-8') // 向客户端响应内容 res.end(str) }) server.listen(8080,function(){ console.log('server running at http://127.0.0.1:8080'); })2,根据不同的url响应不同的html内容
const http = require('http') const server = http.createServer() server.on('request',(req,res)=>{ // req.url是客户端请求的url地址 const url = req.url let content = '404 not fonnd!' if(url === '/' || url === '/index.html'){ content = '<h2>首页</h2>' }else if(url === '/about.html'){ content = '<h2>关于我们</h2>' } // 防止中文乱码 res.setHeader('Content-Type','text/html; charset=utf-8') // 调用res.end()方法,向客户端响应一些内容 res.end(content) }) server.listen(8080,()=>{ console.log('http server running at http://127.0.0.1:8080'); })
赏
相关推荐
windows如何把已安装的nodejs高版本降级为低版本
第一步:先清空本地安装的node.js版本
1.按健win+R弹出窗口,键盘输入cmd,然后敲回车,然后进入命令控制行窗口,并输入where node查看之前本地安装的node的路径
2.找到上面找到的路径,将node.exe所在的父目录里面的所有东西都删除
3.为了彻底删除之前安装的node.js,鼠...
This application is only supported on Windows 8.1, Windows Server 2012 R2, or hi gher.
有的nodejs版本不支持win7,在win7系统中执行npm -v时会有以下提示
This application is only supported on Windows 8.1, Windows Server 2012 R2, or hi
gher.
下载v12.16.2及之前的版本即可
https://nodejs.org/d...
评论加载中...
前一篇: nodejs 时钟案例
后一篇: nodejs http时钟web服务器