slice() 方法
提取字符串的某个部分,并以新的字符串返回被提取的部分。
语法
string.slice(start,end)
实例
var str="www.wanjunshijie.com";
console.log(str.slice(4))...
yekong
2年前 (2022-07-07)
喜欢
使用命令行部署yapi
mkdir yapi
cd yapi
git clone https://github.com/YMFE/yapi.git vendors //或者下载 zip 包解压到 vendors 目录(clone 整个仓库大概 140+ M,可以通过 `git c...
yekong
2年前 (2022-07-07)
喜欢
问题
linux系统下,执行命令
npm install -g yapi-cli --registry https://registry.npm.taobao.org
安装后,执行找不到命令
yapi server
yapi: command not found
解决
任意...
yekong
2年前 (2022-07-06)
喜欢
lodash方法
axisLabel: {
margin: 10,
interval: 0,
rotate: 40,
color: 'rgba(245, 245, 246, 1.00)',
textStyle: {
fontS...
yekong
2年前 (2022-07-06)
喜欢
_.truncate([string=''], [options=])
截断string字符串,如果字符串超出了限定的最大值。 被截断的字符串后面会以 omission 代替,omission 默认是 "..."。
参数
[string=''] (strin...
yekong
2年前 (2022-07-06)
喜欢
需求
vue项目开发时,需要使用crypto-js对账号密码进行加密处理。
安装依赖
npm install crypto-js --save-dev
创建方法
const CryptoJS = require('crypto-js');
export function e...
yekong
2年前 (2022-07-05)
喜欢
需求
vue实现图片验证码展示,点击图片验证码可切换。
/**
* @Author: 858834013@qq.com
* @Name: vrifyCode
* @Date: 2022-07-05
* @Desc:实现图片验证码展示,点击图片验证码可切换
*/
<temp...
yekong
2年前 (2022-07-05)
喜欢
全国地图
自定义地图图标,地图路线图
<template>
<div class="echarts1">
<div class="echarts1" ref="echarts"...
yekong
2年前 (2022-07-05)
喜欢
第一版调整
vue 数字滚动实例
第二次调整
由原有手动处理逗号改为方法处理逗号
<template>
<div class="numcard" v-if="show">
<div class=&...
yekong
2年前 (2022-07-05)
喜欢
_.sumBy(array, [iteratee=_.identity])
这个方法类似_.summin 除了它接受 iteratee 来调用 array中的每一个元素,来生成其值排序的标准。 iteratee 会调用1个参数: (value) 。
参数
array (Arra...
yekong
2年前 (2022-07-04)
喜欢