下载 ui库 yarn add ant-design-vue 默认是全局引入,打包后体积很大, 非常影响首屏加载速度, 按需加载 下载按需加载的插件;推荐使用cnpm cnpm install babel-plugin-import --save-dev 下载在开发环境中 在项目的根目录下创建 ba ...
分类:
其他好文 时间:
2021-07-29 16:21:44
阅读次数:
0
前言 SpringBoot的默认配置文件格式是.properities,同时也支持***.yaml或***.yml 1、指定启动的环境 spring: profiles: active: dev 2、给springboot服务命名(配合springcloud时非常有用) spring: applic ...
分类:
编程语言 时间:
2021-07-29 16:19:22
阅读次数:
0
进度条 通过这些简单、灵活的进度条,为当前工作流程或动作提供实时反馈。 基本实例 默认样式的进度条 <div class="progress"> <div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin ...
分类:
其他好文 时间:
2021-07-29 16:17:59
阅读次数:
0
转自:https://www.cnblogs.com/yanzi-meng/p/10763054.html https://www.cnblogs.com/time-on/p/6955764.html 1、对于字符 & 的转移 在执行语句字符串中含有 & 符号时,会被认为要执行插入操作,下面示例转义 ...
分类:
数据库 时间:
2021-07-28 21:39:08
阅读次数:
0
手机图片上传后获取到的宽高反了,网上的说法是操作系统里的文件属性功能可能已经把图片给修正过了,看到的图片是正确的,但是通过getimagesize获取到的宽高不对;这时需要用到exif扩展的exif_read_data方法获取图片头部信息 exif扩展安装:[https://www.cnblogs. ...
分类:
Web程序 时间:
2021-07-28 21:37:41
阅读次数:
0
在Ubuntu虚拟机中,模拟arm开法环境的话,一般是需要交叉编译工具链和qemu来配合使用。安装qemu过程中遇到的问题,我将记录下来。 sudo apt-get install qemu 处理办法便是,依照这个链接进行。如果你能成功那自然好。但是我并没有成功,安装aptitude的时候出现了这个 ...
分类:
系统相关 时间:
2021-07-28 21:25:33
阅读次数:
0
1、在可以联网的机器上下载需要的安装包 https://open.oceanbase.com/softwareCenter/community ob-deploy-*.x86_64.rpm oceanbase-ce-*.x86_64.rpm oceanbase-ce-libs-*.x86_64.rp ...
分类:
其他好文 时间:
2021-07-28 21:24:56
阅读次数:
0
源代码: model = Model(input=X_input, output=[x]) 错误提示: 修正: model = Model(inputs=X_input, outputs=[x]) ...
分类:
其他好文 时间:
2021-07-28 21:23:54
阅读次数:
0
源代码: x = Dense(output_dim=NB_CLASS, activation='softmax')(x) 错误提示: 修正: x = Dense(uints=NB_CLASS, activation='softmax')(x) 代码运行成功。 ...
分类:
其他好文 时间:
2021-07-28 21:23:40
阅读次数:
0
ffmpeg相关操作参考点这儿 视频截取gif 参考这儿 ffmpeg -ss 00:00:20 -i sample.mp4 -to 10 -r 10 -vf scale=200:-1 cutekid_cry.gif ss : indicates the starting point of GIF ...
分类:
其他好文 时间:
2021-07-28 21:17:46
阅读次数:
0