摘要:
1.全局安装(官网不推荐) 2.指定目录运行,如:node_modules/.bin/webpack(找不到webpack命令是因为系统环境变量的原因) 3.自定义shell命令:alias webpack="node_modules/.bin/webpack",之后再用webpack命令 阅读全文
摘要:
一、$parent 父组件 <template> <div> <child></child> </div> </template> <script> import child from './child'; export default { components: { child }, method 阅读全文
摘要:
1、filter方法,接收一个函数作为参数,新建一个数组,遍历数组内的每个元素,符合条件的返回 function getOne(a,b){ var arr = a.concat(b); return arr.filter(function(item,index){ return arr.indexO 阅读全文
摘要:
// pages/configuration/configuration.js const app = getApp() Page({ /** * 页面的初始数据 */ data: { deviceArr: [], isConnected: false, chs: [], bytes:[] }, / 阅读全文
摘要:
//判断是客户端类型 function deviceType(){ var u = navigator.userAgent; var isAndroid = u.indexOf('Android') > -1 || u.indexOf('Adr') > -1; //android安卓 var isi 阅读全文
摘要:
一、h5触发安卓调用函数: JavaScriptHandler.onActionResult(type) 1、JavascriptHandler是安卓定义的中间对象。 2、onActionResult为共同约定的方法名;type参数可传可不传(最好是传一下,IOS中不传的话不能触发); 二、h5接收 阅读全文
摘要:
function tab(titleClass,contentClass,activeClass){ var tabTitle = document.getElementsByClassName(titleClass)[0].getElementsByTagName('div'); var tabC 阅读全文
摘要:
1、电脑上抓包,一般通过浏览器即可 2、手机端抓包:https://www.cnblogs.com/findyou/p/3491014.html 3、pc客户端抓包:暂时为检测 阅读全文
摘要:
一、vue-router的使用 1、通过vue-cli初始化时勾选安装或者直接通过npm安装。 2、在router.js里面import,并通过vue.use使用.然后再export defualt 暴露一个router实例。 3、在mian.js里面引入router.js 二、路由配置及跳转 1、 阅读全文
摘要:
一、静态方法和扩展插件(类级别组件和对象级别组件) 1、即是给jQuery命名空间下添加新的全局函数,也称为静态方法。如$.Ajax(), $.extend()就是采用的类级别组件开发; 2、对象级别的组件开发指的是直接在jQuery原型上挂载的方法,这样可以通过选择器获取的jQuery对象实例也能 阅读全文