博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
关于nodejs 假设httpserver,会发现一次网页打开,服务端会响应两次的问题;
阅读量:5218 次
发布时间:2019-06-14

本文共 1124 字,大约阅读时间需要 3 分钟。

转自:http://cnodejs.org/topic/518772806d38277306804020

每个页面默认都会再发一个de style="line-height: 21px; padding: 4px 6px; font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; font-size: 12px; color: rgb(0, 0, 0); border-radius: 1px; white-space: nowrap; border: none; margin: 0px 1px; background: 0px 0px rgb(252, 250, 250);" >/favicon.icode>

de style="line-height: 21px; padding: 0px; font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; font-size: 12px; color: inherit; border-radius: 3px; border: 0px; background-color: transparent;"  >var http=require('http');var i=0;var req=function(req,res){
i=i+1; console.log(i,req.url); res.writeHead(200,{
'Content-Type':'text/plain'}); res.end('Hello World\n');};http.createServer(req).listen(8888,"127.0.0.1");console.log('Server running...');de>

##控制台输出:

de style="line-height: 21px; padding: 0px; font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; font-size: 12px; color: inherit; border-radius: 3px; border: 0px; background-color: transparent;"  >Server running...1 '/'2 '/favicon.ico'de>

转载于:https://www.cnblogs.com/maomingchao/p/6706618.html

你可能感兴趣的文章
bzoj 2007: [Noi2010]海拔【最小割+dijskstra】
查看>>
BZOJ 1001--[BeiJing2006]狼抓兔子(最短路&对偶图)
查看>>
C# Dynamic通用反序列化Json类型并遍历属性比较
查看>>
128 Longest Consecutive Sequence 一个无序整数数组中找到最长连续序列
查看>>
定制jackson的自定义序列化(null值的处理)
查看>>
auth模块
查看>>
Java使用FileReader(file)、readLine()读取文件,以行为单位,一次读一行,一直读到null时结束,每读一行都显示行号。...
查看>>
Elipse安装Spring Tool Suite
查看>>
URL地址下载图片到本地
查看>>
ATM作业
查看>>
redis maxmemory设置
查看>>
javascript keycode大全
查看>>
前台freemark获取后台的值
查看>>
log4j.properties的作用
查看>>
滴滴快车历史奖励政策:含工作日和周末的高峰奖励、翻倍奖励【历史政策】...
查看>>
文件操作类2
查看>>
'System.Web.Http.GlobalConfiguration' does not contain a definition for 'Configure'
查看>>
游戏偶感
查看>>
Leetcode: Unique Binary Search Trees II
查看>>
转载------------Python多线程学习
查看>>