一、什么是bootstrap?bootstrap是一个前端开发时使用的框架。前端开发主要写HTML5、css3、JavaScript。而bootstrap框架主要为我们提供两个最重要的文件:bootstrap.min.css和bootstrap.min.js。为什么没有.min.html呢?不知道, ...
分类:
其他好文 时间:
2021-06-25 16:58:48
阅读次数:
0
###js var href='http://localhost:8083/datas/dataflow/logicJob?id=CMZJJO2100000001&type=proLook' var urlParams = (function(url){ var result = new Objec ...
分类:
其他好文 时间:
2021-06-25 16:32:45
阅读次数:
0
web端:socket.io.js 小程序端:weapp.socket.io.js const params = { query:‘’,//连接参数 path: '/socket.io', 'force new connection':true //新开一个websocket连接 } const w ...
分类:
其他好文 时间:
2021-06-25 16:30:53
阅读次数:
0
Vue_控件(tree_table) 要使用tree_table之前要进行依赖的插入, 插入方法可以在vue UI中直接搜索依赖插入 在main.js中导入组件,然后全局定义组件,在使用组件的时候使用 import TreeTable from 'vue-table-with-tree-grid' ...
分类:
其他好文 时间:
2021-06-24 17:57:41
阅读次数:
0
RegExp对象中的方法(检索正则表达的) text() 返回值为true/false exec() 返回一个数组,放匹配到的结果,为找到则输出null compile() ...
分类:
其他好文 时间:
2021-06-24 17:32:57
阅读次数:
0
利用moment.js转化时间格式为YYYY年MM月DD日,或者是YYYY-MM-DD HH:MM:SS 等格式 1.在mian.js引入moment import moment from 'moment' Vue.prototype.$moment = 'moment' 2. 在main.js 设 ...
分类:
Web程序 时间:
2021-06-23 17:15:52
阅读次数:
0
前言 httprunner 3.x可以支持正则匹配断言,使用assert_regex_match方法 assert_regex_match assert_regex_match 源码如下 def assert_regex_match( self, jmes_path: Text, expected_ ...
分类:
Web程序 时间:
2021-06-23 17:08:14
阅读次数:
0
jenkins部署vue项目 安装nodejs 配置nodejs的源,去官网查看需要安装的版本和介绍 V8.x: # curl --silent --location https://rpm.nodesource.com/setup_8.x | bash - yum安装node.js yum ins ...
分类:
其他好文 时间:
2021-06-23 17:07:38
阅读次数:
0
/** * 去除左侧空格 */ function lTrim(str) { if (str) { return str.replace(/(^\s*)/g,""); } return null } /** * 去除右侧空格 */ function rTrim(str) { if (str) { re ...
分类:
Web程序 时间:
2021-06-23 17:07:01
阅读次数:
0
// 创建 websocket.js 文件夹 let wsurl = 'ws://82.157.123.54:9010/ajaxchattest' let ws = null let weboscket_callback = null //获取 websocket 推送的数据 let websock ...
分类:
Web程序 时间:
2021-06-23 17:04:51
阅读次数:
0