nodejs项目实战教程01——http服务和URL类

// 设置响应头

response.writeHead(200, { ‘Content-Type’: ‘text/plain’ });

// 给网页输出一句话并且结束响应

response.end(‘Hello World’);

}).listen(8081); // 端口

console.log(‘Server running at http://127.0.0.1:8081/’);

4、修改内容需要重启node app.js才能生效(下一篇文章中会讲解如何让nodejs应用自动更新)

如果我们修改了文件,比如将 response.end('Hello World'); 修改为 response.end('Hello World 111'); 浏览器仍然显示Hello World,刷新了也没有效果。

在这里插入图片描述

需要在终端重新执行一次node app.js浏览器的内容才会刷新

在这里插入图片描述

[](()4.如何获取url中的参数

==============================================

你可能感兴趣的:(Web前端,经验分享,前端,前端框架)