牛客796502798号
牛客796502798号
全部文章
node.js
android(1)
css(17)
Git(1)
javascript(13)
linux(1)
mongodb(1)
python(1)
react(4)
vue(4)
webpack(1)
前端(12)
小程序(3)
数据结构and算法(1)
程序语言(1)
归档
标签
去牛客网
登录
/
注册
牛客796502798号的博客
全部文章
/ node.js
(共3篇)
npm换淘宝镜像
1、安装淘宝镜像 npm install -g cnpm --registry=https://registry.npm.taobao.org 2、安装nrm cnpm i -g nrm 3、查看本地镜像源 nrm ls 4、切换镜像源 nrm us...
2020-08-24
0
403
koa动态路由
router.get("/news/:aid", async (ctx) => { console.log(ctx.params, 'ctxxxxxxxxxxxxxxxxxxxxx') ctx.body="news detail" }); 请...
2020-08-24
0
456
koa 图片上传
app.js const koa = require("koa") const koaBody = require('koa-body'); const app = new koa() const router = new Router(); app.use(koaBody(...
2020-08-24
0
430