nodeJs|nodeJs + vue.js 小案例

https://www.cnblogs.com/zl-127/p/6543973.html
配置好 node js环境
创建app.js文件,代码如下
nodeJs|nodeJs + vue.js 小案例
文章图片

var http = require("http"); var fs = require('fs'); var url = require('url'); http.createServer(function(request, response) { // 解析请求,包括文件名 var pathname = url.parse(request.url).pathname; // 输出请求的文件名 console.log("Request for " + pathname + " received."); // 从文件系统中读取请求的文件内容 fs.readFile(pathname.substr(1), function(err, data) { if (err) { console.log(err); // HTTP 状态码: 404 : NOT FOUND // Content Type: text/plain response.writeHead(404, { 'Content-Type': 'text/html' }); } else { // HTTP 状态码: 200 : OK // Content Type: text/plain response.writeHead(200, { 'Content-Type': 'text/html' }); // 响应文件内容 response.write(data.toString()); } //发送响应数据 response.end(); }); }).listen(8888); console.log('Server running at http://127.0.0.1:8888/index.html');

【nodeJs|nodeJs + vue.js 小案例】nodeJs|nodeJs + vue.js 小案例
文章图片

下载vue.js文件放在 js目录下,在根目录创建index.html文件,项目文件结构如下
nodeJs|nodeJs + vue.js 小案例
文章图片


index.html页面代码如下
nodeJs|nodeJs + vue.js 小案例
文章图片

- 锐客网{{ message }}
Hello, Vue.js! Yes! No! = 25">Age: {{ age }} = 0">Name: {{ name }}

nodeJs|nodeJs + vue.js 小案例
文章图片

打开终端,cd到项目目录下,执行 node app.js
在浏览器打开http://127.0.0.1:8888/index.html,可以看到如下结果
nodeJs|nodeJs + vue.js 小案例
文章图片

    推荐阅读