node.js調用函數
阿新 • • 發佈:2018-04-15
-type htm quest har 調用 .com response com avi
首先EditPlus編輯器,打開新建的文本文檔,另存為副本
調用函數分為調用本地函數,和其他文件的函數
1、調用本地函數
var http = require(‘http‘); http.createServer(function (request, response) { response.writeHead(200, {‘Content-Type‘: ‘text/html; charset=utf-8‘}); if(request.url!=="/favicon.ico"){ //清除第2此訪問 fun1(response); //調用函數 response.end(‘‘); } }).listen(8000); console.log(‘Server running at http://127.0.0.1:8888/‘); //本地函數 function fun1(res){ //res形參 是給客戶端傳輸響應數據的response console.log("fun1"); res.write("hello,我是fun1"); }
2、調用其他函數
node.js調用函數