-
请求步骤查看全部
-
url format resolve查看全部
-
url parse查看全部
-
999查看全部
-
http模块由JavaScript编写,职责是创建web服务器,执行http的职责。查看全部
-
commonjs是一套规范来约定JavaScript代码怎么组织和编写查看全部
-
node.js 和浏览器环境在执行普通的JavaScript代码上没有区别,不过各自宿主顶层的全局变量不一样:node.js有 process,浏览器有 window和document查看全部
-
默认是链式调用,普通声明和调用查看全部
-
Node.js采用chromeV8引擎使用C++语言编写的一个JavaScript运行环境,不仅可以解析JS代码,还可以提供文件读写,进程管理、网络通信查看全部
-
function Pet(words){this.words= words,speak=function(){console.log(this.words)}} function Dog(words){Pet.call(this,words)} var dog= new Dog('wang') dog.speak() 这里打印出的将是 wang 这个结果查看全部
-
通过call或apply可以改变this的指向 1、call的用法 var pet={words='...',speak=function(say){console.log(say+' '+this.words)}} var dog={words='wang'}这个时候dog对象是没有speak的方法的,要想让它能够speak,可以用call pet.speak.call(dog,'speak'),通过call方法,此时this指针指向的就是dog对象查看全部
-
this的指向: (1)在对象中调用this,this指向的是该对象 var pet={words="...",speak= function(){console.log(this.words)} (2)在函数中调用this,默认指向的是全局对象 function pet(words){this.words=words;console.log(this.words)} (3)构造函数中,this指向的是新构建的对象 function Pet(words){this.words=words,this.speak=function(){console.log(this.words)}}查看全部
-
"npm install -g n" 再通过 "n 版本号" 安装其他版本的node。 "n"回车随意切换要使用的版本。 这个是方便查看全部
-
process window查看全部
-
由于在模块net.js 1146行util.inherits(Server, EventEmitter); 让Server继承了EventEmitter查看全部
举报
0/150
提交
取消