上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 54 下一页
摘要: 公司使用虚拟机(windows) 限制网络,但是 连接的 linux服务器是可以访问网络,试试可以通过在linux服务器上 安装nginx ,通过正向代理,实现上网呢? 最后的结果:可以访问http/https连接,虚拟机上可以通过一台连接外网的linux 实现,虚拟机上的windows主机上网功能 阅读全文
posted @ 2022-07-25 11:13 BBS_自律 阅读(2094) 评论(0) 推荐(0)
摘要: 参考: Linux在线安装nginx 安装步骤: 一、依赖安装 1. 安装zlib、zlib-devel 、gcc-c++、libtool、openssl、openssl-devel 依赖 yum -y install make zlib zlib-devel gcc-c++ libtool ope 阅读全文
posted @ 2022-07-25 09:23 BBS_自律 阅读(382) 评论(0) 推荐(0)
摘要: 参考:java 的 i++ 和 ++i 的区别 1.如果 i++ ,++i 用于计算公式中入下:i++ 先运算再加一,++i先加一再运算 @Test public void test3() { int i = 3; int count = (i++) + (i++) + (i++);//count= 阅读全文
posted @ 2022-07-22 10:21 BBS_自律 阅读(109) 评论(0) 推荐(0)
摘要: 参考: 1.解决vue项目使用element的Dialog组件生成二维码的系列问题 2.element-ui生成二维码 3.Element UI:<el-button> 复制功能 4.js通过QRCode生成二维码并下载 技术点: 1.生成二维码:使用QRCode 2.地址复制按钮, <el-but 阅读全文
posted @ 2022-07-21 10:28 BBS_自律 阅读(326) 评论(0) 推荐(0)
摘要: /* if (/[\u4E00-\u9FA5]/g.test(value)){ callback(new Error('不能含有汉字')); }*/ if(!((/^[0-9]*$/).test(value))) { callback(new Error('请输入正确的工号')); } / 正则/ 阅读全文
posted @ 2022-07-20 16:43 BBS_自律 阅读(152) 评论(0) 推荐(0)
摘要: 样式: 代码: <el-table-column type="index" width="40"></el-table-column> 阅读全文
posted @ 2022-07-20 15:42 BBS_自律 阅读(175) 评论(0) 推荐(0)
摘要: 参考:Vue 回调函数中this无效 1、在回调函数之前将 vue 实例 this 赋值给一个变量,在回调函数中使用该变量 equestHistoryList (mobileNumber, channelIndex) { ...... var _that = this this.sendComman 阅读全文
posted @ 2022-07-19 17:02 BBS_自律 阅读(249) 评论(0) 推荐(0)
摘要: 参考: js遍历json数组 for(var i in jsonstr){ alert("src:"+jsonstr[i].src+"value:"+jsonstr[i].name); } 阅读全文
posted @ 2022-07-19 16:10 BBS_自律 阅读(315) 评论(0) 推荐(0)
摘要: 当需要验证的字段是数字类型的时候,需要使用 v-model.number 来绑定,否则验证的时候会当做字符串处理,结果就无法验证 <el-form-item label="可透支额:" prop="overdraw"> <el-input v-model.number="form.overdraw" 阅读全文
posted @ 2022-07-18 10:40 BBS_自律 阅读(447) 评论(0) 推荐(0)
摘要: 复现: <sql id="selectScoreScenseVo"> select SCENSE_ID, SCENSE_TYPE, SCENSE_NAME, SCENSE_DES, SCENSE_SCORE_NAME, SCENSE_BGIMG_URL, VALID_STATUS, CREATE_T 阅读全文
posted @ 2022-07-14 16:32 BBS_自律 阅读(291) 评论(0) 推荐(0)
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 54 下一页