invalid csrf token
如果是开发模式的话,可以暂时关闭,关闭方法
找到config/config.default.js
添加csrf配置,关闭csrf
// csrf
config.security = {
csrf: {
enabl...
yekong
3年前 (2022-01-21)
喜欢
严格传参模式
除了严格模式还有普通的传参模式
控制器
async strictGet() {
const { ctx } = this;
ctx.body = {
code: 200,
data: ctx.params.name,
...
yekong
3年前 (2022-01-21)
喜欢
普通传参模式
除了常规模式还有严格的传参模式
控制器
async test() {
const { ctx } = this;
ctx.body = {
code: 200,
data: ctx.query,
};
...
yekong
3年前 (2022-01-21)
喜欢
初始化项目
mkdir egg-example && cd egg-example
npm init egg --type=simple
npm i
启动项目
npm run dev
open http://localhost:7001
...
yekong
3年前 (2022-01-19)
喜欢
使用live-server实现页面实时更新
安装live-server
npm i -g live-server
运行
live-server
...
yekong
3年前 (2021-09-06)
喜欢
快速生成一个默认配置的项目
npm init -y
...
yekong
3年前 (2021-09-06)
喜欢
rimraf是node的一个包,可以快速删除node_modules
安装:
npm install rimraf -g
使用:
rimraf node_modules
...
yekong
3年前 (2021-09-03)
喜欢
yrm 是一个 yarn源管理器,允许你快速地在源间切换
经常下载包的速度很忙有的还会卡住几十分钟,所以我们需要切换镜像
这样我们下载的速度会快很多
安装
npm install -g yrm --registry=https://registry.npm.taobao.org
...
yekong
3年前 (2021-09-02)
喜欢
安装yarn
npm install -g yarn
安装成功后,查看版本号:
yarn --version
创建文件夹
md yarn
进入yarn文件夹
cd yarn
初始化项目
yarn init
// 同npm init,执行输入信息后,会生成package...
yekong
3年前 (2021-09-02)
喜欢
下载node.js,使用npm安装
npm install -g yarn
查看版本:
yarn --version
Yarn 淘宝源安装
yarn config set registry https://registry.npm.taobao.org -g
yarn con...
yekong
3年前 (2021-09-02)
喜欢