nodejs學習筆記一( sublime、atom開發環境,http模組,fs模組的初識)

來源:互聯網
上載者:User

標籤:data   配置   下載   ref   原因   引入   log   nodejs   family   

http服務 let server = http.createServer(function(req,res){     }); 監聽:server.listen(8080); request       請求response     相應 編輯器配置相應的環境sublime: 依次開啟  Tools --> Build System --> new Build System 中文:工具 --> 編譯系統 --> 建立編譯系統輸入以下代碼,儲存設定檔,然後 使用快速鍵 Ctrl + b 開啟即時node監聽
{    "cmd": ["node", "$file"],    "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",    "working_dir": "${project_path:${folder}}",    "selector": "source.js",    "shell": true,    "encoding": "utf-8",    "windows": {        "cmd": ["node", "$file"]    }}
atom 編輯器下載對應外掛程式  script Ctrl + shift + b  即時監聽node指令   res.write();     向前台輸出res.end();       結束輸出 req.url        請求的url      輸出   請求的url + favicon.ico     facicon.icon   是chrome自己請求的<link rel= "shortcut icon" href=""> 
const http = require(‘http‘);let server = http.createServer(function(request, response){     console.log(req.url);     switch(req.url) {          case ‘1.html‘:               res.write(‘1111‘);               break;          case ‘2.html‘:               res.write(‘2222‘);               break;          default:               res.write(‘404‘);               break;     };     console.log(‘被請求了‘);     // res.write();     res.end();});server.listen(9090);
http--模組 檔案操作 : fs模組(系統內建模組)  Files System     用戶端  ---- 伺服器----磁碟----伺服器----用戶端 非同步 vs 同步非同步: 多個操作可以同時進行,前一次的操作每完成,後一次的操作也能開始非同步: 一次一個操作 讀檔案:// fs.readFile(檔案名稱, 回呼函數 function(err, data){});     fs.readFile(); data讀取結果<buffer  原始的位元據 >  
const fs = require(‘fs‘);fs.readFile(‘1.txt‘, function(err, data){     if(err) {          console.log(‘讀取失敗‘);     }else {          console.log(data.toString());     }});
寫檔案// fs.writeFile(檔案名稱, 內容, 回呼函數 function(err){ });fs.writeFile(‘1.txt‘, ‘jason is a hero!‘, function(){     });
const fs = require(‘fs‘);fs.writeFile(‘1.txt‘, ‘jason is a hero!‘, function(err){     console.log(err);});
     總結:    注意回呼函數是非同步函數,注釋的res.end();的位置是不對的,fs檔案讀取結束後才能分析原因並且結束相應,而不應該在回調之前先結束相應再執行fs的回調 
// 引入http模組const http = require(‘http‘);// 引入fs模組const fs = require(‘fs‘);// 建立一個串連let server = http.createServer( (req, res) => {    // 指定靜態資源    let file_name = ‘./www‘ + req.url;    fs.readFile(file_name, (err, data) => {        if(err) {            res.write(‘404‘);        } else {            res.write(data);        }        res.end();    });    // res.end();});// 監聽連接埠server.listen(9888);

 

 

nodejs學習筆記一( sublime、atom開發環境,http模組,fs模組的初識)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.