Results 14 issues of songlongkuan

Installing “[email protected]” failed.Hide output… > [email protected] install C:\Users\Administrator\AppData\Local\Temp\apm-install-dir-118525-14240-1oio71b.iuap33ow29\node_modules\etheratom\node_modules\nodent-runtime > node build.js ## Built C:\Users\Administrator\AppData\Local\Temp\apm-install-dir-118525-14240-1oio71b.iuap33ow29\node_modules\etheratom\node_modules\nodent-runtime/dist/index.js > [email protected] install C:\Users\Administrator\AppData\Local\Temp\apm-install-dir-118525-14240-1oio71b.iuap33ow29\node_modules\etheratom\node_modules\keccak > npm run rebuild || echo "Keccak bindings compilation fail. Pure JS...

installation issue

第一个中文标点不会转换为英文标点

麻烦 能不能在解析完数据后 关掉File文件?

弹出图片的时候 明显变形了 高度拉伸了...

即使发布时间是16年的日期 显示的也如下:星期二 十二月 20 这个事情我觉得是这样,在同一周的情况下,只显示星期几,这是合理的 但是超过一月了,甚至超过几年了,还只显示星期几,那么这是不合理的 期望作者能改进....

enhancement

path : layout/common/scripts.ftl new Toc({ wrapperId: 'post-article', insertId: 'toc', showSerial: true }).createToc(); 找不到toc/toc.min.js 这个js 然后new Toc的时候会报错

**What kind of change does this PR introduce?** (check at least one) - [x] 改造为在SpringBoot环境下,直接使用SpringBoot端口 ```java //启动XxlJob SpringBoot接口 @EnableXxlJobController @SpringBootApplication public class XxlJobExecutorApplication { public static void main(String[] args) {...

例如在使用in查询的时候 自动生成的api是这样的 ``` public Criteria andDyUserIdIn(List values) { addCriterion("dy_user_id in", values, "dyUserId"); return (Criteria) this; } ``` 建议把这个List 换成 Collection ,往往有时候我们对某些数据去重后,大部分会采用Set容器,这样的话 调这种类型的api 还得new ArrayList ,所以 这里建议直接采用Collection类型的集合