1 let http =require('http');
 2 
 3 http.createServer((req,res)=>{
 4 //这里注意 再写 charset = utf-8 是 等号两边别特么手贱打两空格 不然这编码格式死都不生效
 5   res.writeHead(200,{'Content-Type':'text/html;charset=utf-8'});
 6   res.write('hello hahahaha');
 7   res.end('\n 我是第二行');
 8 }).listen(80,_=>{
 9   console.log('Server is running!')
10 })

emmm....  这里个人一般在赋值变量是 喜欢敲空格,然后就在这charset = utf-8; 好吧我又敲了 想要这个玩意实现utf-8 编码格式 在等好两边千万别特么敲空格; 除此以外 css属性里面的:

 

calc() 计算方法 再复制的时候 例如 calc(100% - 20em) 这个 - 运算符两边需要空格 希望憨憨别搞混了;