您好,登錄后才能下訂單哦!
js創建一個類
然后在另一程序中實例化使用這個類.
1.創建一個User類
//--------------User.js--------------
function User(id,name,age){
this.id=id;
this.name=name;
this.age=age;
this.enter=function(){
console.log("進入圖書館");
}
}
module.exports = User;
2.調用
//----------------------n3_modalcall.js-------------
var http = require('http');
var User = require('./models/User');
http.createServer(function (request, response) {
response.writeHead(200, {'Content-Type': 'textml; charset=utf-8'});
if(request.url!=="/favicon.ico"){ //清除第2此訪問
user = new User(1,'張三',30); //創建一個user
user.enter();
response.end('');
}
}).listen(8000);
console.log('Server running at http://127.0.0.1:8000/');
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。