04 2021 档案
摘要:收藏自:https://blog.csdn.net/qq_29729735/article/details/80444839 @charset "utf-8"; body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, pre,dl, dt, dd, ul,
阅读全文
摘要:CAP 理论 什么是分布式系统? 由于单台机器无法满足要求,扩展出多台机器一起完成相同的事件,它们之前为了数据一致肯定要进行通信同步,这就导致节点间CAP问题。 C:一致性:节点间数据的同步,在单体上数据都是一致的,在多节点上,就要进行数据的同步,自然会出现数据的不一致,这是由于同一时刻会访问到不同
阅读全文
摘要:error: failed to push some refs to 'github.com:18476305640/wx-music.git'hint: Updates were rejected because the tip of your current branch is behindhi
阅读全文
摘要://事件总线的使用 //准备工作:将此js挂载到app.js中 // var eventBus = require('utils/bus.js'); //第app.js第一行加入 // this.globalData = { //App({})根下加入 // bus: eventBus.eventB
阅读全文
摘要:function SSU(template) { //指针 this.pos = 0; //从哪开始剪切 this.ssi = (this.prevssi=0); //result this.result = ''; //扫描 this.scanUtils = function (tg) { whi
阅读全文
摘要:这个是在windows上的教程,想要在linux上安装mysql? 点击跳转>> 1、基本准备 1)下载 https://dev.mysql.com/downloads/mysql/5.7.html 2)配置环境变量 解压你喜欢的目录下(不推荐放在C盘,如果放在C盘,下面的一些操作请尽量在管理员身份
阅读全文
摘要:function Proson(name,age) { this.name = name; this.age = age; } var proson = new Proson('小庄',21); console.log(proson); console.log(proson.__proto__ Pr
阅读全文
摘要:看有没有对应错 insert into payment(serial) values (#{serial})
阅读全文
摘要:yinymce 富文本编辑的使用 去官网: 下载完成得到: 析出(只需): 得到: 编写组件,让使用编辑器的页面面向该组件: <template> <div id="tinymce-editor"></div> </template> <script> import './tinymce.min.j
阅读全文
摘要:1.Vue安装: npm install axios 2.面向request.js请求: request.js import axios from "axios"; //axios框架可简写为,因为axios本身就返回Promise,上面的方式只不过多穿了件相同的衣服罢了 export functi
阅读全文