LiveNode icon indicating copy to clipboard operation
LiveNode copied to clipboard

node web service 基于node的web服务生成脚手架工具

Results 1 LiveNode issues
Sort by recently updated
recently updated
newest added

dev-server.js中的 ``` proxyTable.forEach(item => app.use(proxy(item.api, {target: item.host}))); ``` 使用错误 导致代理失败 正确的写法应为 ``` proxyTable.forEach(item => app.use(item.api, proxy({target: item.host, changeOrigin: true}))); ```