background picture of the home page

“没有绝世神功”

互相学习,一起进步!

🏔️云南稻城香格里拉6天深度游 | 最强干货攻略

hi! 这是一份超详细的滇藏线旅游攻略,完美避开所有踩坑点!建议收藏🔥 🗺️ 总行程距离概览 图例: 昆明➡️楚雄:约180公里,高速2.5小时 楚雄➡️香格里拉:约520公里,约8小时 香格里拉➡️稻城:约280公里,约7小时 稻城➡️大理:约580公里,约10小时 大理➡️楚

thumbnail of the cover of the post

VUE 里的设计模式

12 种 Vue 设计模式 设计模式,说白了就是写代码的“套路”。用好了,你的代码就能更健壮,更易于维护。几乎所有应用都会遇到一些共性问题,设计模式就像一个宝库,提供了很多经过验证的解决方案。 可关于 Vue 中的设计模式,很多人都说不清道不明。尤其是 Vue 独有的设计模式,更是少有人提及。 今天

thumbnail of the cover of the post

Vue 3组件通信13种方法

在 Vue 3 中,组件之间的通信是构建应用程序的关键。本指南将介绍 13 种不同的组件通信方法,从最简单到最复杂,帮助你选择最适合你需求的方式。 1. 父组件向子组件传递数据 (Props)

thumbnail of the cover of the post

微信H5 JSAPI支付和分享

引入JSSDK npm install weixin-js-sdk 微信JSSDK支付 wxPay方法封装 import axios from 'axios'; import wx from "weixin-js-sdk"; import {GetPayOrder, PostPay} from "

thumbnail of the cover of the post

微信小程序日历组件

// pages/signCalendar/signCalendar.js const dayjs = require('../../utils/dayjs.min') Page({ /** * 页面的初始数据 */ data: { calendarData: [],

thumbnail of the cover of the post

服务器请求超时诊断

1、新建 curl-format 日志格式文件 echo -e "time_namelookup: %{time_namelookup}\\n\ntime_connect: %{time_connect}\\n\ntime_appconnect: %{time_appconnect}\\n\n

thumbnail of the cover of the post

docker 部署wordpress

安装docker # 安装所需依赖 sudo yum install -y yum-utils device-mapper-persistent-data lvm2 # 添加Docker仓库 sudo yum-config-manager --add-repo https://download.

thumbnail of the cover of the post

微信小程序echarts动态展示

支持动态展示修改数据,支持导出图片 WXML <wxs src="/wxs/cdn.wxs" module="cdn" /> <nav-bar id="nav-bar" isInvert="{{true}}" defShowTitle="{{false}}" showBack="{{true}}"

thumbnail of the cover of the post