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
多文件合并下载 依赖于 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 Command "python setup.py egg_info" failed with error code 1 in c:\ ...
分类:
数据库 时间:
2021-05-24 13:57:46
阅读次数:
0
一个请求通过经过中间件最后生成响应 基于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
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
问题 在进行python环境配置的时候,发现以下问题: 解决 更新setuptools和pip ...
分类:
编程语言 时间:
2021-02-17 14:34:33
阅读次数:
0
一.在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
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端 第一步 先创建一个路由 'use strict' /** * @param {Egg.Application} app - egg application */ module.exports = ({ router, controller: { searchStastics: { sea ...
分类:
其他好文 时间:
2020-07-06 20:09:33
阅读次数:
100
有两个表,第一个接口:如果a表是主表,需要连接多个表,其中有个是b表,另一个接口,b表是主表,需要连接多个,其中有个是a表,那么这时候在model里面不需要做2次关联,直接1次关联,然后直接在service里面的include去用这个关联名字就可以了,例如: 在HxUserBaseInfo表里面 t ...
分类:
Web程序 时间:
2020-07-06 19:56:33
阅读次数:
86