這篇文章主要介紹了Nodejs模塊如何調(diào)用,具有一定借鑒價值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。
成都創(chuàng)新互聯(lián)公司主要從事成都網(wǎng)站制作、網(wǎng)站建設、網(wǎng)頁設計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務。立足成都服務大廠,10多年網(wǎng)站建設經(jīng)驗,價格優(yōu)惠、服務專業(yè),歡迎來電咨詢建站服務:028-86922220
User.js
//構(gòu)造方法 function User(id, name, age) { this.id = id; this.name = name; this.age = age; this.enter = function () { console.log(this.name + "進入國家圖書館"); } } /* function User() { this.id; this.name; this.age; this.enter = function() { console.log(this.name + "進入圖書館"); } } module.exports = User;
Teacher.js
var User = require('./User'); function Teacher(id, name, age) { User.apply(this, [id, name, age]);//類的繼承 this.teach = function(res) { res.write(this.name + "講課"); } } module.exports = Teacher;
modalcall_1.js
//----------------------n3_modalcall.js模塊的調(diào)用------------- var http = require('http'); var User = require('./model/User'); http.createServer(function (request, response) { response.writeHead(200, { 'Content-Type': 'text/html; charset=utf-8' }); if (request.url !== "/favicon.ico") { //清除第2此訪問 user = new User(1, "jack", 20); //user.id = 1; //user.name = "張三"; //user.age = 20; user.enter(); response.end(''); } }).listen(8000); console.log('Server running at http://127.0.0.1:8000/');
modalcall_2.js
//----------------------n3_modalcall.js------------- var http = require('http'); var Teacher = require('./model/Teacher'); http.createServer(function(request, response) { response.writeHead(200, { 'Content-Type': 'text/html; charset=utf-8' }); if(request.url !== "/favicon.ico") { //清除第2此訪問 teacher = new Teacher(1, "JackLi", 20); teacher.enter(); teacher.teach(response); response.end(''); }// }).listen(8000); console.log('Server running at http://127.0.0.1:8000/');
感謝你能夠認真閱讀完這篇文章,希望小編分享Nodejs模塊如何調(diào)用內(nèi)容對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,遇到問題就找創(chuàng)新互聯(lián),詳細的解決方法等著你來學習!
新聞標題:Nodejs模塊如何調(diào)用
URL鏈接:http://www.rwnh.cn/article32/ihjgsc.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供建站公司、響應式網(wǎng)站、外貿(mào)建站、網(wǎng)站內(nèi)鏈、自適應網(wǎng)站、商城網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)