码迷,mamicode.com
首页 >  
搜索关键字:egg    ( 297个结果
Python turtle安装和使用教程
1 安装turtle Python2安装命令: pip install turtule Python3安装命令: pip3 install turtle 因为turtle库主要是在Python2中使用的,所以安装的时候可能会提示错误: Command "python setup.py egg_inf ...
分类:编程语言   时间:2021-06-28 19:11:31    阅读次数:0
egg.js文件下载实现
多文件合并下载 依赖于 https://github.com/feross/multistream const streams = []; for (const file of files) { streams.push(fs.createReadStream(file)); } this.ctx. ...
分类:Web程序   时间:2021-05-24 14:10:30    阅读次数:0
安装pymysql报错 TypeError: 'encoding' is an invalid keyword argument for this function
安装pymysql报错: TypeError: 'encoding' is an invalid keyword argument for this function Command "python setup.py egg_info" failed with error code 1 in c:\ ...
分类:数据库   时间:2021-05-24 13:57:46    阅读次数:0
egg和koa洋葱模型
一个请求通过经过中间件最后生成响应 基于koa2的demo const Koa = require('koa'); const app = new Koa(); const PORT = 3000; // #1 app.use(async (ctx, next)=>{ console.log('wa ...
分类:其他好文   时间:2021-04-15 12:19:38    阅读次数:0
egg.js index.html, 多个静态资源配置问题
1.egg.static,访问首页,有public; 解决:default.config.js 中,增加配置,当访问到固定的路径时,返回指定的页面; config.siteFile = { '/numax':fs.readFileSync( path.join(appInfo.baseDir, 'a ...
分类:Web程序   时间:2021-04-07 10:39:16    阅读次数:0
Command "python setup.py egg_info" failed with error code 1
问题 在进行python环境配置的时候,发现以下问题: 解决 更新setuptools和pip ...
分类:编程语言   时间:2021-02-17 14:34:33    阅读次数:0
egg中使用jwt
一.在egg里面(此时egg已部署完毕)安装egg-jwt npm i egg-jwt -S 二.配置 在config.plugin.js文件里 并在config/config.default.js里面 三.使用(一般都是在前端登录并且用户存在时,后端会生成一个token返给前端) 在service ...
分类:其他好文   时间:2020-12-21 11:18:48    阅读次数:0
egg 开启 gzip 压缩(tl)
1.安装 zlib yarn add zlib 2.创建中间件 app/middleware/gzip.js const isJSON = require("koa-is-json"); const zlib = require("zlib"); module.exports = (options) ...
分类:其他好文   时间:2020-07-10 13:41:49    阅读次数:154
node中转后台提供的接口,前端拿到路由进行导出
node端 第一步 先创建一个路由 'use strict' /** * @param {Egg.Application} app - egg application */ module.exports = ({ router, controller: { searchStastics: { sea ...
分类:其他好文   时间:2020-07-06 20:09:33    阅读次数:100
egg.js两个表相互关联怎么写
有两个表,第一个接口:如果a表是主表,需要连接多个表,其中有个是b表,另一个接口,b表是主表,需要连接多个,其中有个是a表,那么这时候在model里面不需要做2次关联,直接1次关联,然后直接在service里面的include去用这个关联名字就可以了,例如: 在HxUserBaseInfo表里面 t ...
分类:Web程序   时间:2020-07-06 19:56:33    阅读次数:86
297条   1 2 3 4 ... 30 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!