几种情况: 1.window可以 liunx乱码 检查文件写入文件夹时已经是乱码 解决方法:写入文件的时候转码 iconv('utf-8', 'gb2312','中文名称'); 2.window乱码 检查文件写入文件夹时已经是乱码 如果不是乱码 把代码传到服务器上面测试 是否正常能导出中文 如果还是 ...
分类:
其他好文 时间:
2021-05-03 11:47:58
阅读次数:
0
DENIED Redis is running in protected mode because protected mode is enabled, no bind address was specified, no authentication password is requested to ...
分类:
其他好文 时间:
2021-04-30 12:41:09
阅读次数:
0
http://www.codingwhy.com/view/8733.html set MAVEN_OPTS="-Dfile.encoding=UTF-8" ...
分类:
其他好文 时间:
2021-04-29 11:41:35
阅读次数:
0
一、定义数据库数据模型 create database doubandb; create TABLE books( id bigint(20) unsigned NOT NULL COMMENT ID号, title varchar(255) DEFAULT NULL COMMENT 书名, aut ...
分类:
其他好文 时间:
2021-04-28 11:43:58
阅读次数:
0
import Vue from "vue"; // vue自定义指令防抖 Vue.directive("antiShake", { bind: function(el, binding, vnode) { let { delay, fn } = binding.value; //参数:时间,执行函数 ...
分类:
其他好文 时间:
2021-04-26 13:57:03
阅读次数:
0
import Vue from "vue"; // vue自定义指令节流 Vue.directive("throttle", { bind: function(el, binding, vnode) { let { delay, fn } = binding.value; //参数:时间,执行函数 ...
分类:
其他好文 时间:
2021-04-26 13:55:45
阅读次数:
0
学习无他法,唯有持之以恒 Git解决中文乱码问题git status 乱码解决方法:git config --global core.quotepath false?git commit 乱码解决方法:git config --global i18n.commitencoding utf-8?git ...
分类:
其他好文 时间:
2021-04-26 13:50:31
阅读次数:
0
unzip -q wenjian.zip #指定GBK GB18030编码也是可以的 unzip -O CP936 资料.zip 主要的原因是因为unzip在解压的时候会将编码转化为其内部默认的编码,而默认的编码根本不支持中文CP936编码。因此我们需要在解压的时候明确的指定需要使用的编码。 修改u ...
分类:
系统相关 时间:
2021-04-26 13:45:07
阅读次数:
0
系统:win10 今天在使用控制台打印内容时, 发现个人对制表符不是很清楚,在此记录,以便日后查阅. 分割线 函数: int printf(const char* _Format, ...) 注1:这货竟然有返回值, 返回输出的字符数量 注2:关于输出乱码的问题:printf打印,包括Qt控件上显示 ...
分类:
其他好文 时间:
2021-04-26 13:25:33
阅读次数:
0
1.v-bind指令用于给html标签的属性赋值,如<h1 v-bind:title="msg">test</h1>。任意属性都可以使用这样的用法 2.v-bind:title可以简写为:title,如<h1 :title="msg">test</h1> 3.:title="",""中也可以使用简单 ...
分类:
其他好文 时间:
2021-04-24 13:27:49
阅读次数:
0