最新回答 / minip
function add(teacher) { console.log("Add teacher:"+teacher)}exports.add = add我的理解是,等号左边的add是暴露出去 的方法名吧(可以自定义命名),等号右边 add 就是需要暴露出去的 function add(){}如有错误请指正;
2016-04-29
最新回答 / 雨中有芦苇
看以前的评论,有人提到了一些变化的,主要是视频里发送的数据是'cid':348,而实际现在使用的是'mid':8837,8837是当前视频页面地址最后面那个数字
2016-04-28
最赞回答 / AsyncNooby
这个问题是用户你的权限不够不足以安装这个安装包.需要打开任务管理器,注意,左上角的,点击文件,运行新的程序,将那个安装包的路径在这里写上,记得勾上系统创建任务.这个就可以了.
2016-04-21
最赞回答 / 慕粉3294123
首先像楼上说的,call的作用对象应该是函数function pet(words) { //这里应该加参数,否则new Dog('wangwagn')传的参数 就没有意义 this.words = words, this.speak=function(say) { console.log(say + ' ' + this.words); }};function Dog(words) { pet.call(this, words);}var dog = new ...
2016-04-21
最新回答 / microzz
//适合现在慕课网的代码,水平有限,有不足希望指点var http = require('http')var cheerio = require('cheerio')var url = 'http://www.imooc.com/learn/348/'function filterChapters(html){ var $ =cheerio.load(html) var chapters = $('.chapter') var courseData=[] chapters.each...
2016-04-20
最新回答 / 洛央下
const http = require('http');const hostname = '127.0.0.1';const port = 3000;const server = http.createServer((req, res) => { res.statusCode = 200; res.setHeader('Content-Type', 'text/plain'); res.end('Hello World\n');})server.listen(port, hostname, ...
2016-04-19