第一步: 创建lang文件夹 index.js import Vue from 'vue' import VueI18n from 'vue-i18n' import Cookies from 'js-cookie' import elementEnLocale from 'element-ui/l ...
分类:
其他好文 时间:
2021-04-23 11:59:54
阅读次数:
0
slice() splice() 定义 从已有的数组中返回选定的元素。 删除/替换/原地添加元素来修改数组 改变原数组 否 是 用法 arrObj.slice(start, end) arrObj.splice(index, howmany, item1, ....., itemX) 参数1说明 s ...
分类:
编程语言 时间:
2021-04-23 11:50:12
阅读次数:
0
下面是新浪微博上曾经很火的一张图: 一时间网上一片求救声,急问这个怎么破。其实这段代码很简单,index数组就是arr数组的下标,index[0]=2 对应 arr[2]=1,index[1]=0 对应 arr[0]=8,index[2]=3 对应 arr[3]=0,以此类推…… 很容易得到电话号码 ...
分类:
编程语言 时间:
2021-04-23 11:49:50
阅读次数:
0
MySQL中"full outer join"的实现 表ta 表tb 使用:【left join】 union 【right join】 select t1.dim_a, t1.qty qty_a, t2.dim_a dim_b, t2.qty qty_b from ta t1 left join ...
分类:
数据库 时间:
2021-04-22 15:56:52
阅读次数:
0
<?php //index.php 公众号后台配置的路径是这个index.php $wechatObj = new wechat(); $wechatObj->responseMsg(); class wechat { //返回消息模板 private $textTpl = [ 'text' => ...
分类:
微信 时间:
2021-04-22 15:53:55
阅读次数:
0
1、预期效果 2、index.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1. ...
分类:
Web程序 时间:
2021-04-21 12:55:41
阅读次数:
0
有时我们有一个带着文件名的路径如“/home/user/file.py” 我们不要“/file.py”,只要“/home/user”这个路径。 我想到的办法 1.用.rfind()和.replace() 注意:.rfind("/")是指从字符串最后开始查找找到第一个“/”的位置,也就是该字符串最后一 ...
分类:
编程语言 时间:
2021-04-21 12:30:42
阅读次数:
0
?Pytorch版本介绍 torch:1.6 CUDA:10.2 cuDNN:8.1.0 ?安装 NVIDIA 显卡驱动程序 一般 电脑出厂/装完系统 会自动安装显卡驱动 如果有 可直接进行下一步 下载链接 http://www.nvidia.cn/Download/index.aspx?lang= ...
分类:
其他好文 时间:
2021-04-21 12:19:29
阅读次数:
0
####1.准备站点目录 for i in {android,iphone,firefox,chrome,default} ;do mkdir /html/terminal/${i} && echo $i >/html/terminal/${i}/index.html ;done ####2.准备配 ...
分类:
Web程序 时间:
2021-04-21 12:00:37
阅读次数:
0
常用的redis命令 select index 选择数据库 dbsize 查看数据库大小 flushdb 清空当前数据库 flushall 清空所有数据库 keys * 展示所有key Redis五大数据类型 Redis-Key set name airou #设置键值 ,skeys * #展示所有 ...
分类:
其他好文 时间:
2021-04-21 12:00:17
阅读次数:
0