码迷,mamicode.com
首页 >  
搜索关键字:local profixed index    ( 57975个结果
window批处理清空垃圾
1.clear.txt->clear.bat @echo off echo 正在清除系统垃圾文件,请稍等...... del /f /s /q %systemdrive%\*.tmp del /f /s /q %systemdrive%\*._mp del /f /s /q %systemdrive ...
分类:Windows程序   时间:2021-04-29 11:55:50    阅读次数:0
VueCropper 使用
1. 安装 npm install vue-cropper --save-dev 2. 使用 <template> <div> <el-dialog title="选择图片" :visible.sync="isShowCropper" :before-close="handleClose" widt ...
分类:其他好文   时间:2021-04-29 11:48:35    阅读次数:0
Vue项目启动报There are multiple modules with names that only differ in casing.错误
先贴一下报错提示 解决方案: 在router/index.js中查找Role.vue路由的注册信息。 首先,组件的路径一定要写错,注意大小写!!注册路由如果没问题的话,要看是否挂路由,信息是否错误 如果这些都没有错误的话,就要自习检查一下,其他路由注册的时候,是否有相同的名字,若名字相同,也会报这个 ...
分类:其他好文   时间:2021-04-29 11:41:15    阅读次数:0
First Unique Character in a String (找到一个字符串中第一个不重复的字符)
问题描述 下面是有关这个问题的描述部分。 英文 Given a string s, return the first non-repeating character in it and return its index. If it does not exist, return -1. 中文 针对给 ...
分类:其他好文   时间:2021-04-28 12:10:00    阅读次数:0
vue(13)新建组件并使用
1.前面的所有例子我们都是将代码写在一个App.vue组件,这个App.vue组件通过main.js将其绑定到index.html中的一个元素标签上。 2.这里写一个组件,将该组件再App.vue组件中使用 3.src目录下新建一个component文件夹,在component文件夹下新建一个Hel ...
分类:其他好文   时间:2021-04-28 12:05:33    阅读次数:0
微信小程序之事件绑定
绑定事件 在input标签内使用bindinput关键字,可以绑定input事件 例如: index.wxml中 `<input type="text" bindinput="handInputOne">` index.js中 `handInputOne(a){ console.log(a) //若 ...
分类:微信   时间:2021-04-28 11:50:08    阅读次数:0
splice() 和slice() 的区别
1.splice() 本质上会修改当前数组 slice()生成新的数组,原来的数组不改变 2.splice(index,howmany,item1,...,itemX) : index必须的 改变的起始位置,为负数时从最后面算; howmany必须:从index开始的多少位;itemX可选:替换的部 ...
分类:其他好文   时间:2021-04-27 15:23:34    阅读次数:0
centos8编译安装php8
2021年4月24日17:29:22 环境: php8.0.3 centos 8.3 ./configure \ --prefix=/usr/local/php8 \ --with-config-file-path=/usr/local/php8/etc \ --with-curl \ --with ...
分类:Web程序   时间:2021-04-27 15:21:59    阅读次数:0
页面上多个audio只播放一个
// ts版-vue private justPalyOne() { const audios = document.querySelectorAll("audio"); // 暂停函数 const pauseAll = (exclude: any): any => { audios.forEach ...
分类:其他好文   时间:2021-04-27 15:20:20    阅读次数:0
python自动化测试——Jenkin环境搭建
1、下载Tomcat 官网:https://tomcat.apache.org/ 下载之后解压,解压后如图所示,通常将web项目放到webapps目录下。 进入bin,双击startup.bat启动tomcat服务器。 2、下载Jenkins 官网:https://www.jenkins.io/ 根 ...
分类:编程语言   时间:2021-04-27 15:17:03    阅读次数:0
57975条   上一页 1 ... 31 32 33 34 35 ... 5798 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!