posted @ 2017-01-24 10:23
01 2017 档案
摘要:xshell 可能无法正常显示中文,即使选择了utf-8编码也不生效。 1:输入:echo $LANG 显示:en_US.UTF-8 2、输入:export LANG=zh_CN.UTF-8 3、 输入:echo $LANG 显示:zh_CN.UTF-8 4、这时候选择了utf-8编码就正常显示中文
阅读全文
摘要:问题:某个字段的类型为text(或者mediumtext,longtext)的时候,用selectByQuery语句查询出来的结果不包含该字段内容。 myibatis 用mybatis-generator自动生成以后,text,mediumtext,longtext跟普通的varchar,char类
阅读全文
posted @ 2017-01-13 20:42
摘要:第一种: 复制代码代码如下: <script language="javascript" type="text/javascript"> window.location.href="jb51.jsp?backurl="+window.location.href; </script> 第二种: 复制代
阅读全文
posted @ 2017-01-10 16:13
摘要:1、import Form from '../pages/form/view' 与 import Form from '../pages/form/container'的区别: 前者只是引入view.js 后者会引入包括container.js里面包括的所以js! 2、debugger 这个句子直接
阅读全文
posted @ 2017-01-09 10:34
摘要:<div id="myInfo" style={{width:'100%',height:'100%', overflow:'scroll'}}></div> 无效 <div id="myInfo" style={{width:'100%',height:'620px', overflow:'scr
阅读全文
posted @ 2017-01-05 16:18