点我去Gitee
点我去Gitee

随笔分类 -  js

摘要:mqtt.js import * as mqtt from "mqtt" const options = {//mqtt参数 clean: true, connectTimeout: 4000, clientId: "mqtt" + Math.random().toString(16).substr 阅读全文
posted @ 2022-06-01 11:30 biuo 阅读(57) 评论(0) 推荐(0)
摘要:#数组对象常用的方法 1.检测数组中是否有某个值 比如检测输入的ip是否唯一 .some let isHaveIp=arrSourse.some(item=>item.ip inputIp) 2.浅拷贝 深拷贝 let two_brand = one_brand.slice(0);//浅拷贝 let 阅读全文
posted @ 2022-03-28 16:08 biuo 阅读(122) 评论(0) 推荐(0)
摘要:https://www.cnblogs.com/jpfss/p/9105119.html 阅读全文
posted @ 2022-03-28 14:45 biuo 阅读(273) 评论(0) 推荐(0)
摘要:JSON格式 零、前言 最近在最一个从手机读写文件的app,当我把数据写到文件中,发现JSON格式很不乐观,于是,来做个笔记 开始之前,先把JSON.stringfy官方用法文档奉上:https://www.runoob.com/js/javascript-json-stringify.html 一 阅读全文
posted @ 2021-10-18 11:48 biuo 阅读(144) 评论(0) 推荐(0)
摘要:关于BrowserRouter和HashRouter的选择 选择Hashrouter,是因为打包不会出错,但是在使用时,要加上#。如【HTTP://111.111.111.111/#/index】 阅读全文
posted @ 2021-10-18 08:58 biuo 阅读(183) 评论(0) 推荐(0)
摘要:1.必填 页面.js(核心代码 非完全) //引入检测方法 import validate from '../utils/validate.js'//方法:验证填写信息 //填写规则 const rules = { name: { rule: /\S/, info: "*机床名字必填" }, ip: 阅读全文
posted @ 2021-10-16 17:16 biuo 阅读(127) 评论(0) 推荐(0)
摘要:url传递参数 url的加码和解码 encodeURI decodeURI 加码 encodeURI const sendData = { boxId: this.state.boxIdMessage[0].boxId, flag: "add", from: 'boxMessage' } let j 阅读全文
posted @ 2021-10-16 15:50 biuo 阅读(307) 评论(0) 推荐(0)
摘要:原文连接:https://blog.csdn.net/changliangwl/article/details/82703251 js自定义监听事件及触发 <html> <body> <input id="input" > <button onclick="myEvent()">myEvent</b 阅读全文
posted @ 2021-10-16 10:36 biuo 阅读(535) 评论(0) 推荐(0)
摘要:原文连接:https://blog.csdn.net/debruyne/article/details/70313371 一、获取url内容 //设置或获取对象指定的文件名或路径。 alert(window.location.pathname); //设置或获取整个 URL 为字符串。 alert( 阅读全文
posted @ 2021-10-16 10:32 biuo 阅读(452) 评论(0) 推荐(0)