# settings.py 配置一 LOG_DIR = BASE_DIR + "/log" LOGGING = { 'version': 1, 'disable_existing_loggers': True, 'formatters': { 'standard': { 'format': '%(a ...
分类:
其他好文 时间:
2020-06-04 19:57:56
阅读次数:
66
在写编译原理实验的时候,遇到了这个错误: [Error] 'strlen' was not declared in this scope 查阅之后得知,<string.h>里没有strlen,<cstring>才有。 #include<cstring> 头头儿加上这行就好了。 ...
分类:
其他好文 时间:
2020-06-04 19:55:43
阅读次数:
74
1.Composition API 1.新增setup() 执行时间是在以前 beforeCreate 和 created 之间 2.生命周期以及其他vue的函数的使用需要按需引用 import { onBeforeMount, onMounted, onBeforeUpdate, onUpdate ...
分类:
其他好文 时间:
2020-06-04 18:02:41
阅读次数:
213
更换电脑后,虽然都是直接把以前的包直接拷贝到新电脑上的,但是python3中无法导入appium:“Cannot set up a python SDK”,如下: 打开Pycharm→file→settings→project interpreter; 发现没有配置,也找不到python 选择一下: ...
分类:
移动开发 时间:
2020-06-04 15:32:48
阅读次数:
317
解决方案: 右击我的电脑->属性->高级系统设置->高级->环境变量->系统变量 在path变量中添加 C:\Program Files\dotnet\ 然后重启visual studio 注意:不要改变原来的值,只要在后面添加,用分号分割。 然后就可以正常使用了,如图。 ...
分类:
Web程序 时间:
2020-06-04 14:03:43
阅读次数:
89
按钮:<buttonclass="layui-btnlayui-btn-sm"id="upload_importCustomer">导入</button>upload控件渲染:upload.render({elem:‘#upload_importCustomer‘,url:ctx+‘/customer/customer/importData/‘,accept:‘file‘/
分类:
编程语言 时间:
2020-06-04 11:54:42
阅读次数:
66
##一、 spring cloud项目启动。遇到问题: ##二、 解决,共两个地方。 第一个位置: Shift/Ctrl/Alt/S 快捷键一起按 Modules选择你的项目(以及父级项目,如果有的话)->选择8(你的jdk版本) 如图: 第二个位置 1.Setting: 2.查找java comp ...
分类:
编程语言 时间:
2020-06-04 10:36:17
阅读次数:
269
在解压完交叉编译工具链和添加完环境变量后 使用arm-linux-gnueabihf-gcc还是提示没有这个文件 这是因为我的ubuntu16.01,是64位 的,但是交叉编译工具是32位的,所以要安装32库的依赖 见这篇博客 https://blog.csdn.net/qq_37781464/ar ...
分类:
系统相关 时间:
2020-06-04 01:50:15
阅读次数:
100
1.java编译报错 错误 Error: A JNI error has occurred, please check your installation and try again 👆下面还有其他报错但我没有截到,但问题的原因都是这个👆 这个错误一般情况是由于java 版本 与javac 版本 ...
分类:
其他好文 时间:
2020-06-04 01:04:18
阅读次数:
78
一、场景介绍因业务需要,现将两个域名进行跳转,具体如下:访问http://www.A.com/buyweb跳转到http://swch.B.com/ipcboss/temp1/yunhao_business_pc访问http://www.A.com/buyh5跳转到http://swch.B.com/ipcboss/temp1/yunhao_business_h5二、具体配置第一种方式:upstr
分类:
其他好文 时间:
2020-06-03 23:27:23
阅读次数:
123