上一页 1 2 3 4 5 6 7 ··· 13 下一页
  2024年8月2日
摘要: 首先这里不介绍mockjs有多少优点,只是记录一个全新的vue项目如何安装并使用mock。 安装vue项目(不想安装新项目,可直接跳过,看安装mockjs内容) 在命令行输入安装命令vue create vue-mock vue3或者vue2都可以,默认enter键一直就装好了 安装mockjs 使 阅读全文
posted @ 2024-08-02 10:24 技术高超 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 前期准备:vue项目,安装好了axios和mock,如果没有可以看我的博客全新vue项目使用mock 实现效果:点击按钮之后,可以播放音频,本地音频是放在vue项目里的,数据库音频是需要调用后端请求获得音频的(这里是获取mock中的base64音频数据) vue项目vue-audio目录结果如下,其 阅读全文
posted @ 2024-08-02 10:24 技术高超 阅读(396) 评论(0) 推荐(0) 编辑
  2024年7月26日
摘要: 补充上节数组未用到的数组方法 //定义的普通数组arr以及对象数组 arr: [1, 2, 3, 4, 5], arrObject: [ { name: 'n1', title: 't1' }, { name: 'n2', title: 't2' }, { name: 'n3', title: 't 阅读全文
posted @ 2024-07-26 18:12 技术高超 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 参考 https://www.jianshu.com/p/856f4200d3c0 最近,经常操作数组,可是数组中的一些常用操作方法很迷糊,看了上面一篇文章之后,茅塞顿开。 于是自己按照上面文章的用法,自己全部从头到尾写了一遍,分为普通的数组以及对象数组的操作。 //定义数组 const arr = 阅读全文
posted @ 2024-07-26 18:11 技术高超 阅读(14) 评论(0) 推荐(0) 编辑
摘要: //定义对象数组 const arrayObject= [ { name: 'name1', title: 'title1' }, { name: 'name2', title: 'title2' }, { name: 'name3', title: 'title3' } ]; //数组对象 //1 阅读全文
posted @ 2024-07-26 18:11 技术高超 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 照抄https://juejin.im/post/5bdef288e51d450d810a89c6 testEquals(fruit) { if (fruit 'apple' || fruit 'strawberry') { console.log('=='); } }, testIncludes( 阅读全文
posted @ 2024-07-26 18:11 技术高超 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/bigbear00007/article/details/80111967 cutsubstr(str, len) { if (!str || !len) { return ''; } let build = ''; for (let i = 0; 阅读全文
posted @ 2024-07-26 18:11 技术高超 阅读(4) 评论(0) 推荐(0) 编辑
摘要: const arr = ['a', 'b', 'c', 'd']; // //1.1、删除指定位置的一个元素 // arr.splice(1, 1); // console.log('arr', arr); //["a", "c", "d"] // //1.2、删除指定位置的两个元素 // arr. 阅读全文
posted @ 2024-07-26 18:10 技术高超 阅读(69) 评论(0) 推荐(0) 编辑
摘要: const emptyValue =''; const undefinedValue = undefined; const nullValue = null; const emtpyArrayValue = []; const emptyObjectValue = {}; const secondL 阅读全文
posted @ 2024-07-26 18:10 技术高超 阅读(9) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_29914837/article/details/82779697 1.官网下载jenkins 下载地址:https://www.jenkins.io/download/thank-you-downloading-windows-installer- 阅读全文
posted @ 2024-07-26 18:09 技术高超 阅读(38) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 13 下一页