上一页 1 2 3 4 5 6 7 8 ··· 13 下一页
摘要: 前提说明 Vue CLI 3 创建项目,目录大致如下所示: 1 ... 2 ├── [ 512] public 3 │ ├── [2.2K] favicon.ico 4 │ └── [ 812] index.html 5 ├── [ 512] src 6 │ ├── [ 709] App.vue 7 阅读全文
posted @ 2020-07-07 17:23 smile_lg 阅读(2752) 评论(0) 推荐(0) 编辑
摘要: 1.安装相应的编译工具 在root用户下(不要用普通用户,麻烦),全部复制粘贴过去,一次性安装即可. yum -y groupinstall "Development tools" yum -y install zlib-devel bzip2-devel openssl-devel ncurses 阅读全文
posted @ 2020-06-29 16:20 smile_lg 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 报错信息: /usr/share/rubygems/rubygems/core_ext/kernel_require.rb:55:in `require': cannot load such file -- redis (LoadError)from /usr/share/rubygems/ruby 阅读全文
posted @ 2020-06-22 15:53 smile_lg 阅读(2013) 评论(0) 推荐(0) 编辑
摘要: IP地址表示,IP地址有两个部分组成,net-id和host-id,即网络号和主机号。 127.0.0.1 127.0.0.1属于{127,}集合中的一个,所有的网络号为127的地址都被称为环回地址,所以环回地址不等价于127.0.0.1,后者只是环回地址的一份子,是包含关系,环回地址loop ba 阅读全文
posted @ 2020-06-18 10:07 smile_lg 阅读(7032) 评论(0) 推荐(2) 编辑
摘要: apache 有个开源库:commons-net,这个开源库中包括了各种基础的网络工具类,我使用了这个开源库中的 FTP 工具。 但碰到一些问题,并不是说是开源库的 bug,可能锅得算在产品头上吧,各种奇怪需求。 问题 当将网络限速成 1KB/S 时,使用 commons-net 开源库中的 FTP 阅读全文
posted @ 2020-06-17 11:43 smile_lg 阅读(1891) 评论(0) 推荐(0) 编辑
摘要: 简介: vsftpd 是“very secure FTP daemon”的缩写,安全性是它的一个最大的特点。 vsftpd 是一个 UNIX 类操作系统上运行的服务器的名字,它可以运行在诸如 Linux、BSD、Solaris、 HP-UNIX等系统上面,是一个完全免费的、开放源代码的ftp服务器软 阅读全文
posted @ 2020-06-15 19:07 smile_lg 阅读(2638) 评论(2) 推荐(2) 编辑
摘要: echarts 地图默认文字颜色修改 normal和emphasis itemStyle(图形样式)参数分有 normal 和 emphasis 两个状态。normal 是图形在默认状态下的样式;emphasis 是图形在高亮状态下的样式 normal:{ //静态的时候显示的默认样式 show:t 阅读全文
posted @ 2020-06-11 11:33 smile_lg 阅读(7411) 评论(0) 推荐(1) 编辑
摘要: 引入checkbox 组件 <el-checkbox :indeterminate="isIndeterminate" v-model="checkAll" @change="handleCheckAllChange">全选</el-checkbox> <el-checkbox-group v-mo 阅读全文
posted @ 2020-05-02 16:34 smile_lg 阅读(10783) 评论(0) 推荐(1) 编辑
摘要: 1、外部文件config.js 第一种写法 1 //常量的定义 2 3 const config = { 4 baseurl:'http://172.16.114.5:8088/MGT2' 5 } 6 7 //函数的定义 8 9 function formatXml(text) { 10 retur 阅读全文
posted @ 2020-04-23 18:04 smile_lg 阅读(4894) 评论(0) 推荐(0) 编辑
摘要: 对象属性监听的两种方法: 1.普通的watch 1 data() { 2 return { 3 frontPoints: 0 4 } 5 }, 6 watch: { 7 frontPoints(newValue, oldValue) { 8 console.log(newValue) 9 } 10 阅读全文
posted @ 2020-04-22 17:18 smile_lg 阅读(533) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 13 下一页