摘要: docker 获取 mysql 5.7 版本的镜像。 将docker 里面的 3306 端口映射出来,否则虚拟机外,可能无法访问, 创建 docker 镜像 docker run -itd -p 3306:3306 --name some-mysql -e MYSQL_ROOT_PASSWORD=q 阅读全文
posted @ 2022-04-03 16:22 cn.xuan05 阅读(512) 评论(0) 推荐(0) 编辑
摘要: 1 2 3 4 5 6 7 阅读全文
posted @ 2022-04-01 00:02 cn.xuan05 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 1 2 4 5 阅读全文
posted @ 2022-04-01 00:01 cn.xuan05 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 1.1 准备自己的梯子工具 1.1.1 Windows 系统 1.1.2 安卓系统 1.1.3 手机模拟器 1.2 淘宝购买 google voice 账号 google voice 账号,相当于获得了一个美国的号码,互相发短信,打电话免费(拨打美国本地的号码,或者英国的号码),而且可以接收语音邮箱 阅读全文
posted @ 2022-03-31 20:44 cn.xuan05 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1 安装 git windows 选择版本为 Git-2.29.2.2-64-bit 2 启动sourcetree 的安装 选择版本为 SourceTreeSetup-2.5.5 2.1 第一次启动 sp2 会下载安装 ,手动安装 .net 的安装包,需要联网进行 NDP461-KB3102436- 阅读全文
posted @ 2020-11-20 12:02 cn.xuan05 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 听完这首歌我家的哈士奇望向我,我明白了他的意思是想让我骑他上战场 https://www.xiami.com/song/mQP7gq776da 一把青 陈小霞 https://www.xiami.com/album/nmTjAi6c7e6 荷塘月色 https://www.xiami.com/son 阅读全文
posted @ 2020-10-17 17:30 cn.xuan05 阅读(91) 评论(0) 推荐(0) 编辑
摘要: npm config set registry https://registry.npm.taobao.org/ npm config get registry 安装vue-cli 报错 npm install -g @vue/cli --unsafe-perm 阅读全文
posted @ 2020-10-13 22:00 cn.xuan05 阅读(2707) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>基于vue-router的案例</title> <style type="text/css"> html, body, #app { margin: 0; 阅读全文
posted @ 2020-10-13 11:23 cn.xuan05 阅读(403) 评论(0) 推荐(0) 编辑
摘要: /* 路由模块 */ const express = require('express'); const router = express.Router(); const service = require('./service.js'); // 查询图书列表 router.get('/books' 阅读全文
posted @ 2020-10-13 09:48 cn.xuan05 阅读(372) 评论(0) 推荐(0) 编辑
摘要: 定义一个局部组件 分成三个部分 Vue.component('my-cart',{ template: ` <div class='cart'> <cart-title></cart-title> <cart-list :list='list' @cart-del='delCart($event)' 阅读全文
posted @ 2020-10-07 17:02 cn.xuan05 阅读(91) 评论(0) 推荐(0) 编辑