......\node_modules\koa\lib\response.js:47
const { res } = this;
^
SyntaxError: Unexpected token {
at exports.runInThisContext (vm.js:53:16)
at Module._compile (module.js:373:25)
at Object.Module._extensions..js (module.js:416:10)
at Module.load (module.js:343:32)
at Function.Module._load (module.js:300:12)
at Module.require (module.js:353:17)
at require (internal/module.js:12:17)
at Object.<anonymous> (......\node_modules\koa\lib\application.js:11:18)
at Module._compile (module.js:409:26)
at Object.Module._extensions..js (module.js:416:10)
当我开始我的koa演示时,控制台会显示此信息
节点版本:v4.4.7
&#34; koa&#34;:&#34; ^ 2.2.0&#34;
这是我的entry.js:
const Koa = require('koa');
const app = new Koa();
app.use(ctx => {
ctx.body = 'Hello Koa';
});
app.listen(3000);
我在response.js:47和context.js:124中删除{}
const res = this;
一切都运行正常。我不知道为什么。
答案 0 :(得分:0)
因为const res = this;
意味着只是常数变量res等于此
const { res } = this;
是对象解构(http://exploringjs.com/es6/ch_destructuring.html)它是平等的const res = this.res;
因此如果this
没有属性res,您将收到错误。