使用 Node 建立 Web 客戶端

1建立 客戶端client.js 文件:html var http = require('http');   // 用於請求的選項 var options = {    host: 'localhost',    port: '8080',    path: '/index.html'   };   // 處理響應的回調函數 var callback = function(response){  
相關文章
相關標籤/搜索