上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 65 下一页
摘要: mosquitto 介绍: mosquitto 是一个基于windows平台的mqtt消息代理软件, 下载地址 MQTT简介: MQTT 协议实际上由3个部分组成,分别是 代理服务器,发布者,订阅者; 消息代理启动后,订阅者去订阅某个主题,当发布者对该主题发布了消息,订阅者就可以接收到该消息。 mo 阅读全文
posted @ 2020-01-06 17:27 GetcharZp 阅读(452) 评论(0) 推荐(0) 编辑
摘要: 其实ESP8266板子要实现空中载入,最核心的就是要在代码中指定响应的载入代码就行。 第一步:打开 ArduinoOTA 中的basic_ota文件; 第二步:修改你的wifi名和密码,这里要注意一点就是 5G 的频这个板子会检测不到 #include <ESP8266WiFi.h> #includ 阅读全文
posted @ 2020-01-06 12:02 GetcharZp 阅读(2121) 评论(1) 推荐(0) 编辑
摘要: 第一步:安装Redis ,redis windows 下载链接 第二步:将下载好的 msi 文件根据安装提示安装好。我们知道Redis作为服务的NoSQL,我们需要将它设置为服务,方便以后直接使用,而对于Redis而言也是分为服务端和 客服端,这两者的关系要闹明白,我们将Redis服务启动起来后,就 阅读全文
posted @ 2020-01-05 18:33 GetcharZp 阅读(512) 评论(0) 推荐(0) 编辑
摘要: echarts.init(document.getElementById(id)).setOption({ backgroundColor: '#2c343c', // 背景颜色 textStyle: { color: 'rgba(255, 255, 255, 0.3)', // 文本颜色 font 阅读全文
posted @ 2019-12-31 11:40 GetcharZp 阅读(651) 评论(0) 推荐(0) 编辑
摘要: 原因: 微擎后台绑定的小程序与前台小程序不对应; 解决办法: 首先,在微擎后台新建一个与前台小程序对应的后台小程序平台; 然后,修改前台小程序中的 siteinfo.js 文件,使其中的 uniacid 、 acid 与后台平台的ID一致 最后,重新刷新开发者工具就阔以了。 阅读全文
posted @ 2019-12-30 10:42 GetcharZp 阅读(1222) 评论(0) 推荐(0) 编辑
摘要: 解决办法: 将该资源文件的引入放在 整个文件的最前面 阅读全文
posted @ 2019-12-26 15:23 GetcharZp 阅读(433) 评论(0) 推荐(0) 编辑
摘要: getSystemInfoSync 获取用户设备的相关信息 示例代码: 使用位置:在 JS文件的任意函数中使用 const res = wx.getSystemInfoSync(); console.log(res); console.log(res.model); // 设备机型 console. 阅读全文
posted @ 2019-12-23 18:16 GetcharZp 阅读(1901) 评论(0) 推荐(0) 编辑
摘要: base64ToArrayBuffer 将 base64 的字符串转化为 ArrayBuffer 对象 示例代码: 使用位置:在 JS文件的任意函数中使用 const base64 = 'CxYh'; console.log(wx.base64ToArrayBuffer(base64)) 阅读全文
posted @ 2019-12-23 18:10 GetcharZp 阅读(2839) 评论(0) 推荐(0) 编辑
摘要: 1、在 core/mobile 中添加对应的文件夹和文件 2、访问的路由 : 举个栗子: 当访问链接为: https://getcharzp.cn/app/index.php?i=2&c=entry&m=ewei_shopv2&do=mobile&r=member.esp 的时候, 对应的控制器为 阅读全文
posted @ 2019-12-23 14:30 GetcharZp 阅读(881) 评论(0) 推荐(0) 编辑
摘要: 使用说明: 1、回复的内容还是需要自己建表存储起来; 2、通过 Module.php 文件将回复内容相关的操作封装起来 最终效果图: 示例: 1、module.php <?php /** * * @url http://www.we7.cc/ */ defined('IN_IA') or exit( 阅读全文
posted @ 2019-12-20 15:27 GetcharZp 阅读(811) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 65 下一页