createWebHistory 生产环境下不带# const router = createRouter({ history: createWebHistory(), routes }); createWebHashHistory路由模式路径带#号 const router = createRou ...
分类:
其他好文 时间:
2021-06-13 10:21:54
阅读次数:
0
1.org.apache.rocketmq.client.exception.MQClientException: No route info of this topic, MyTopic 报错信信息如下: Exception in thread "main" org.apache.rocketmq ...
分类:
其他好文 时间:
2021-06-11 18:46:49
阅读次数:
0
本窗口打开: 传参: this.$router.push({ name: 'info-detail', params: {id: id}}) 取参: this.$route.params.id 新窗口打开 传参: window.open(this.$router.resolve({ path: 'i ...
分类:
其他好文 时间:
2021-06-08 23:19:17
阅读次数:
0
按照官方设置写的路由,卡在了Cannot read property 'matched' of undefined这个错误问题,查了很多资料才知道,有两上命名是不能改动的,route与router; 在目录新建了文件router.js import Vue from 'vue' import vue ...
分类:
其他好文 时间:
2021-06-07 20:35:33
阅读次数:
0
Django实现MySQL读写分离 1. 增加slave数据库的配置 DATABASES = { 'default': { # 写(主机) 'ENGINE': 'django.db.backends.mysql', # 数据库引擎 'HOST': '192.168.103.158', # 数据库主机 ...
分类:
数据库 时间:
2021-06-06 19:02:54
阅读次数:
0
在Windows中,有时特定的ip只能访问特定的网络,就需要进行路由的转发。 1.查询路由信息 route print -4 是查询IPv4的路由信息,若要查询所有的,把`-4`去掉即可。 2.添加路由 route -p add 目的ip mask 子网掩码 下一跳ip 例如把目的为:10.100. ...
IP地址的设置 在配置网络之前我们先要知道centos的网卡名称是什么,centos7不再使用 ifconfig 命令,可通过命令 ip addr 查看,如图,网卡名为ens32,是没有IP地址的 动态IP 修改网卡配置文件 vi /etc/sysconfig/network-scripts/ifc ...
分类:
其他好文 时间:
2021-06-05 17:52:05
阅读次数:
0
1.路由传值: 传值:this.$router.push({ path: '/a', query: { id:1, age:18 } }) //如点击时触发 接收:this.$route.query.id || this.$route.query.age 2.父组件找子组件拿值及其方法: 父: im ...
分类:
其他好文 时间:
2021-06-04 19:08:41
阅读次数:
0
Linux通过手机USB网络共享上网 因为各种各样的原因,Linux系统有时无法通过自身网卡接入互联网,而需要通过手机才能接入互联网。 设置方法如下: 1.连接好数据线并在手机设置中打开“USB网络共享”。 2. 终端中查看是否将USB接口识别为网络接口。 ip addr 或者 ifconfig 输 ...
分类:
移动开发 时间:
2021-06-03 18:20:05
阅读次数:
0
一.连接xshell 1.找到IP 在vm中启动虚拟机并打开终端 输入 ifconfig -a ip: 192.168.150.128 二.Xshell连接 1.新键会话 根据对应输入 打开相应会话 设置登陆账号 设置登陆密码 出现#既连接成功 三.xftp文件传输 在Xshell的菜单栏点击如下图 ...
分类:
系统相关 时间:
2021-06-03 17:50:10
阅读次数:
0