- 博客(22)
- 资源 (2)
- 收藏
- 关注
原创 js数据类型
字符串(String)、数字(Number)、布尔(Boolean)、对空(Null)、未定义(Undefined)、es6基本数字类型。BigInt新的数据类型,用于当整数值大于Number数据类型支持的范围时。对象(Object)、数组(Array)、函数(Function)(Symbol)、新的数据类型(BigInt)。...
2022-07-23 15:16:34 101
原创 微信小程序 request.js
/** @format */import api from './api.js';function ApiLogin(Fun, url, Data, title, head) { var app = getApp(); uni.showLoading({ title: title, mask: true, }); var contentType = ''; if (head == '1') { contentType = 'application/json.
2022-02-14 14:07:09 610
原创 标识及角色权限校验
import store from '@/store'/** * 字符权限校验 * @param {Array} value 校验值 * @returns {Boolean} */export function checkPermi(value) { if (value && value instanceof Array && value.length > 0) { const permissions = store.getters &.
2021-12-16 10:08:23 1219
转载 会动的词云
<template> <div class="wordCloud" ref="wordCloud"> </div></template><script>export default { name: 'word-cloud', data () { return { hotWord: ['万事如意', '事事如意 ', '万事亨通', '一帆风顺', '万事大吉', '吉祥如意', ...
2021-12-15 11:49:03 270
转载 数组并,交,差集Set的妙用
1,并集let a=new Set([1,2,3,4,5]);let b=new Set([1,2,3,4,5,6,7,8,9]);let arr = Array.from(new Set([...a, ...b]));console.log('arr',arr);2.交集let a=new Set([1,2,3,4,5]);let b=new Set([1,2,3,4,5,6,7,8,9]);let arr = Array.from(new Set([...b].filter(
2021-12-02 16:02:06 460
原创 vue2.0 api接口全局统一挂载
/*** api接口的统一出口* 批量导入./下的所有模块* 自动使用js文件名做模块名,所以请不要重复*/const path = require('path')const files = require.context('./', true, /\.js$/)const modules = {}files.keys().forEach(key => { const name = path.basename(key, '.js') // 回key的最后一...
2021-11-26 10:33:51 577
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人