后来百度修改 发现
1 2 3 4 5 6 7 8 9 10 11 12 | router.get( '/hello' , (ctx,next) => { var name = '123' ; ctx.response.body = `<h1>Hello, ${name}!</h1>`; }); 这样就不会出现404了 然而按照老师的写法 router.get( '/api/1' , function *(next) { this .body = 'test data 1' }); 就是NotFound 这是为什呢 |