摘要:
微信小程序发送模板消息 标签(空格分隔): php 看小程序文档 【模板消息文档总览】:https://developers.weixin.qq.com/miniprogram/dev/framework/open ability/template message.html 【发送模板消息】:htt 阅读全文
摘要:
报错信息: In file included from /usr/include/string.h:633, from /usr/local/php-8.1.0/include/php/main/../main/php_config.h:2210, from /usr/local/php-8.1.0 阅读全文
摘要:
页面A,html代码中添加一个按钮: 添加 复制 页面A,在js代码中添加以下代码监听class=spec_add_btn这个按钮的点击事件并弹窗打开页面B $(document).on('click','.spec_add_btn', function (event) { var url = $( 阅读全文
摘要:
Cenots7 编译安装 PHP8.0 1. 安装依赖 yum -y install libxml2-devel sqlite-devel bzip2-devel libcurl-devel libpng-devel libjpeg-devel freetype-devel libicu-devel 阅读全文
摘要:
Vagrant 打包自己的box镜像 1. 查看虚拟机名称 vboxmanage list vms 如果执行失败,到VirtualBox安装目录下执行 C:\Program Files\Oracle\VirtualBox> vboxmanage list vms "one_default_17246 阅读全文
摘要:
使用PHP创建一个SSE响应来与客户端保持连接 <?php header('Content-Type: text/event-stream'); header('Cache-Control: no-cache'); header('Connection: keep-alive'); // 模拟数据更 阅读全文
摘要:
该问题是由于官方机制的带来的,当可用磁盘空间降至配置的限制(默认为50 MB)以下时,将触发警报,所有生产者将被阻止。目的是避免填满整个磁盘,这将导致节点上的所有写操作失败并可能导致RabbitMQ终止。 阅读全文
摘要:
github:https://github.com/ccfos/nightingale 夜莺监控安装 # 创建个 n9e 的目录 mkdir -p /opt/n9e && cd /opt/n9e # 下载 n9e 发布包 wget https://download.flashcat.cloud/n9 阅读全文
摘要:
# php-elasticsearch客户端基本使用 标签(空格分隔): php,elasticsearch 官方文档:https://www.elastic.co/guide/en/elasticsearch/client/php-api/current/getting-started-php.h 阅读全文
摘要:
# Docker安装ElasticSearch 标签(空格分隔): linux 安装ElasticSearch 版本:elasticsearch:7.10.1 mkdir -p /usr/local/elasticsearch/config mkdir -p /usr/local/elasticse 阅读全文
摘要:
# Gorm一对一,一对多,搞我半天bug 标签(空格分隔): go,gorm 问题:一对一,一对多,查询数据报错:unsupported relations for schema 代码 // GoodsSpecificationAttrModel 商品规格-属性表 type GoodsSpecif 阅读全文