function getStuff(req: express.Request, res: express.Response, next: express.NextFunction): void {
fetch('http://localhost:3000/stuff')
.then((data: {}) => {
res.send(data.body._readableState.buffer.head.data.toString());
})
.catch((err: {}) => {
res.json(err);
});
}
我得到的错误是[tslint] Forbidden http url in string 'http://localhost:3000/stuff' (no-http-string)
我可以通过将方法放在// tslint:disable-next-line
上面来忽略此错误fetch()
,但是还有其他解决方案吗?