04 2022 档案
摘要:1)git init //初始化git 仓库 2)Git clone git@github.com:genwozou/ch.git //clone 项目 3)Cd 仓库名/ //进入到仓库目录 4)Git checkout -b ‘fz’ // 创建自己的分支 5)Git add . //添加到本地
阅读全文
摘要:https://blog.csdn.net/M__L__/article/details/82502794
阅读全文
摘要:Mongodb 内网地址:dds-uf69sjl63xn3os0y.mongodb.rds.aliyuncs.com 公网地址:dds-uf69sjl63xn3os0y-pub.mongodb.rds.aliyuncs.com 账号名:user60301726 密码:1907a*******A123
阅读全文
摘要:1、浏览器获取输入的域名www.baidu.com 2、浏览器向域名系统DNS请求解析www.baidu.com的IP地址 3、DNS解析出百度服务器的IP地址 4、浏览器与服务器建立TCP连接(默认端口80) 5、浏览器发出HTTP请求,请求百度首页 6、服务器通过HTTP请求把首页文件发给浏览器
阅读全文
摘要:wx.ml <view bindtap="haveSave" data-id="{{headHouseDetails.id}}"> <view> <image class="save " src="{{isClick?'/images/shou(1)(1).png':'/images/shou1.p
阅读全文
摘要:/** * 轮播图添加至数据库并缓冲至redis中 *users:闫兵 *Data:2022/4/21 *Time:9:46 */ public function storeageBanner() { // 获取数据 $data = Redis::get('www.hyzf.com.homepage
阅读全文
摘要:onLoad(options) { this.getUserLocation() }, /** * 定位地点 */ getUserLocation: function () { let _this = this wx.getLocation({ type: 'gcj02', // type有两中类型
阅读全文
摘要:https://segmentfault.com/a/1190000013499082
阅读全文
摘要:1:进入安装MySQL的目录 2: (1)查看是否开启慢日记 show variables like '%slow_query%'; (2)这种方法更为详细 show variables like '%quer%'; 3;使用命令进行开启 set global slow_query_log=1; 4
阅读全文
摘要:https://note.youdao.com/ynoteshare/index.html?id=b2f8467c4fcc5246b7403595663ec3c8&type=notebook&_time=1641439848054#/01DF97E0D712416EB2FF53ECFDB76791
阅读全文
摘要:CREATE TABLE `user_address` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL DEFAULT '0' COMMENT '用户id', `consignee` varcha
阅读全文
摘要:1.首先,创建中间件: php artisan make:middleware XSS 2.其次,修改app/Http/Middleware/XSS.php文件 XSS.php namespace App\Http\Middleware; use Closure; use Illuminate\Ht
阅读全文
摘要:1.小程序app.js onLaunch()方法中插入(路由进行模板字符串) 模板字符串 // app.js import {config} from "./pages/config/config.js" App({ onLaunch() { let token = wx.getStorageSyn
阅读全文
摘要:https://blog.csdn.net/daxianyu666/article/details/123263906?spm=1001.2014.3001.5502 1:进入\phpstudy_pro\Extensions 复制2个MySQL文件夹作为主从库 2:修改文件夹副本副本为slave 作
阅读全文