配置匿名FTP服务器在修改完/etc/vsftpd/vsftpd.conf文件后restart出现error
Job for vsftpd.service failed because the control process exited with error code. See "systemct... ...
分类:
其他好文 时间:
2021-02-23 14:23:37
阅读次数:
0
pyspark有个bug, 虽然下面代码写了 write.mode("overwrite")但是不生效 spark.conf.set("hive.exec.dynamic.partition.mode", "constrict") db_df.repartition(1).write.mode("o ...
分类:
其他好文 时间:
2021-02-23 14:14:20
阅读次数:
0
2021年1月29日,SAP GUI 7.70发布。包含了新的Fiori 3 Quartz主题,终于和其他流行IDE一样,支持暗黑风格的编程背景了。该版本也第一次同时支持基于微软Edge / IE的HTML Control,改善了多显示器环境里的缩放效果。 下载链接如下. 更多Jerry的原创文章, ...
分类:
其他好文 时间:
2021-02-22 12:53:21
阅读次数:
0
跨域常见问题: 1.发布到IIS上后跨域问题 解决方法 修改web.config文件 <system.webServer> <httpProtocol> <customHeaders> <add name="Access-Control-Allow-Methods" value="GET,POST, ...
分类:
Web程序 时间:
2021-02-22 12:27:38
阅读次数:
0
let begT = laydate.render({ elem: '#begintime', type: 'datetime', format: 'yyyy-MM-dd HH:mm', done: function (value, date, endDate) { endT.config.min ...
分类:
其他好文 时间:
2021-02-22 12:26:53
阅读次数:
0
网页请求报错: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. ...
分类:
数据库 时间:
2021-02-20 12:31:09
阅读次数:
0
很多时候我们用一些管理系统的时候,发布新闻、公告等文字类信息时,希望能很快的将word里面的内容直接粘贴到富文本编辑器里面,然后发布出来。减少排版复杂的工作量。 下面是借用百度doc 来快速实现这个word 粘贴到 富文本编辑器里面方法一: 工具/原料 百度doc任意富文本编辑器,以UEDdito为 ...
分类:
其他好文 时间:
2021-02-20 12:09:53
阅读次数:
0
一 RibbonAutoConfiguration @Configuration @Conditional(RibbonAutoConfiguration.RibbonClassesConditions.class) @RibbonClients @AutoConfigureAfter( name ...
分类:
编程语言 时间:
2021-02-20 12:02:23
阅读次数:
0
因为我数据库字段存的是0和1,在使用iview的Switch控件的时候,它是bool值判断,非常不好使,于是搞个计算属性实时监听,它有get和set两个方法,很方便 代码如下: <i-switch v-model="IsEnable" /> computed: { IsEnable: { get: ...
分类:
其他好文 时间:
2021-02-19 13:46:34
阅读次数:
0
打开"运行"对话框(Win+R),输入cmd,打开控制台命令窗口... 也可以通过cmd /c 命令 和 cmd /k 命令的方式来直接运行命令 注:/c表示执行完命令后关闭cmd窗口;/k表示执行完命令后保留cmd窗口 # 控制台命令窗口中一些技巧 复制内容:右键弹出快捷菜单,选择“标记(K)”, ...