数据库高级部分 1、编码mysql 1.1、查看mysql编码 mysql> show variables like 'character%';+ + +| Variable_name | Value |+ + +| character_set_client | utf8 || character_ ...
分类:
数据库 时间:
2021-06-04 19:20:04
阅读次数:
0
Failed fetching remote preset dcloudio/uni-preset-vue: 1. 利用github下载:https://github.com/dcloudio/uni-preset-vue 2. 解压好文件,一般下载好的项目都会有两层文件夹,删掉第一层文件夹 3. ...
分类:
移动开发 时间:
2021-06-04 19:16:33
阅读次数:
0
module.exports和exports有什么关系或者区别呢? 我们追根溯源,通过维基百科中对CommonJS规范的解析: CommonJS中是没有module.exports的概念的; 但是为了实现模块的导出,Node中使用的是Module的类,每一个模块都是Module的一个实例,也就是mo ...
分类:
其他好文 时间:
2021-06-04 19:07:52
阅读次数:
0
IDEA 启动项目报错: Failed to start connector [Connector[HTTP/1.1-9502]] 原因: 端口被占用 查进出: netstat -ano|findstr 9502 杀进程:taskkill /pid 2640 /f ...
分类:
其他好文 时间:
2021-06-04 19:02:07
阅读次数:
0
node模块 模块化本质:就是一个实现特定功能的js文件。 模块化开发:是一个管理方法,是一种生产方式,解决问题的方案 node 模块分为三种 自定义模块 定义模块: 通过module.exports = {} 导出模块 通过exports.属性名 = value 导出模块 引入模块: const ...
分类:
其他好文 时间:
2021-06-04 18:57:24
阅读次数:
0
__all__ = [<string>] 它是一个string元素组成的list变量,定义了当你使用 from <module> import * 导入某个模块的时候能导出的符号(这里代表变量,函数,类等)。 其实就是代码保护,限定本模块中只有哪些能被import。 举例:foo.py __all_ ...
分类:
编程语言 时间:
2021-06-04 18:49:33
阅读次数:
0
Error: I am getting following error while openning connection with Database from asp.net application. [SqlException (0x80131904): Login failed for use ...
分类:
移动开发 时间:
2021-06-03 18:29:29
阅读次数:
0
Lambda integration with ALB HTTP(s) Lambda function must be registered in a target group ALB Multi-Header Values If a client connect to ALB, we can co ...
分类:
移动开发 时间:
2021-06-03 18:21:09
阅读次数:
0
方法一: 在 package.json 中添加 --open 方法二: 在 vue.config.js 中,devServer 添加加 open:true ,没有vue.config.js,自己创建一个 module.exports = { devServer: { open: true } } ...
分类:
其他好文 时间:
2021-06-03 18:18:31
阅读次数:
0
使用模块 ngx_http_gzip_module 用gzip方法压缩响应数据,节约带宽 一、启用或禁用gzip压缩 gzip on | off; 二、压缩比由低到高:1 到 9, 默认:1 gzip_comp_level level; 压缩比越高,越消耗CPU 三、匹配到客户端浏览器不执行压缩 g ...
分类:
其他好文 时间:
2021-06-03 18:08:25
阅读次数:
0