课程
/前端开发
/Node.js
/进击Node.js基础(一)
teacher.add is not a function
2016-10-02
源自:进击Node.js基础(一) 4-3
正在回答
把 klass.js 文件里的这个给注释掉,你会发现 就能正常的执行了
//hello.js var he=function(a){ console.log('hello '+a); } exports.hello=he; //console.js var hel=require('./hello.js'); hel.hello('ab'); 你试下就知道了
function add(teacher) { console.log('add teacher ' + teacher); } exports.add = add;
这样试下
举报
本视频教程带你揭开Node.js的面纱,带你走进一个全新世界