下载 ui库 yarn add ant-design-vue 默认是全局引入,打包后体积很大, 非常影响首屏加载速度, 按需加载 下载按需加载的插件;推荐使用cnpm cnpm install babel-plugin-import --save-dev 下载在开发环境中 在项目的根目录下创建 ba ...
分类:
其他好文 时间:
2021-07-29 16:21:44
阅读次数:
0
在Ubuntu虚拟机中,模拟arm开法环境的话,一般是需要交叉编译工具链和qemu来配合使用。安装qemu过程中遇到的问题,我将记录下来。 sudo apt-get install qemu 处理办法便是,依照这个链接进行。如果你能成功那自然好。但是我并没有成功,安装aptitude的时候出现了这个 ...
分类:
系统相关 时间:
2021-07-28 21:25:33
阅读次数:
0
源代码: model = Model(input=X_input, output=[x]) 错误提示: 修正: model = Model(inputs=X_input, outputs=[x]) ...
分类:
其他好文 时间:
2021-07-28 21:23:54
阅读次数:
0
演示版本 VS2013 isspace()函数 isspace()函数用于判断字符是否为空白字符。 语法 int isspace(int ch); isspace()函数的语法参数说明如下: 参数ch为一个待检查的字符。 isspace()函数的返回值:不是空白字符返回0,是则返回非0。 示例 本示 ...
分类:
编程语言 时间:
2021-07-28 21:23:23
阅读次数:
0
1 获取当前脚本所处目录路径 #!/bin/bash work_dir=$(cd $(dirname $0);pwd) echo $work_dir ...
分类:
系统相关 时间:
2021-07-28 21:18:02
阅读次数:
0
''' pip install pymupdf pip install pillow ''' import os import uuid import fitz from PIL import Image, ImageDraw, ImageFont import zipfile basedir = ...
分类:
其他好文 时间:
2021-07-27 17:38:27
阅读次数:
0
源代码: train_dir = os.path.join(base_dir, 'train') os.mkdir(train_dir) 错误提示: FileExistsError: [WinError 183] 当文件已存在时,无法创建该文件。 修改代码: train_dir = os.path. ...
dockerfile文件 #See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging. FRO ...
分类:
Web程序 时间:
2021-07-23 17:38:17
阅读次数:
0
问题描述 在Menu导航栏中选中菜单栏,在刷新页面后,菜单仍然是选中状态 菜单的index值为路由导航地址,通过sessionStorage将当前选中的地址保存起来,实现效果。 setSelectPath(path){ window.sessionStorage.setItem('selectPat ...
分类:
其他好文 时间:
2021-07-22 17:42:50
阅读次数:
0
使用UITableView、UICollectionView时,当数据变更了,需要重新调用reloadData刷新时,有时候界面会出现闪烁。 造成闪烁的原因,主要是因为CALayer有一个隐式动画,只要在调用reloadData刷新时,关闭隐式动画就可以避免了。代码示例如下: [CATransact ...
分类:
其他好文 时间:
2021-07-22 17:41:22
阅读次数:
0