Linking WeChat Mini Program Users to Official Account OpenIDs
Due to WeChat's revocation of the unified message push interface for mini programs and official accounts, developers can no longer directly send official account messages to users via their mini program openIDs—even when both services are bound under the same entity in the WeChat Open Platform. To enable cross-platform messaging, it's now neces ...
Posted on Thu, 14 May 2026 11:38:11 +0000 by acirilo
Implementing Horizontal Image Split in UniApp WeChat Mini Program
Parent Component for Image Upload
Create an upload button that trigegrs the file selection dialog:
uni.chooseMessageFile({
extension: [".jpg", ".png", ".jpeg"],
success: (res) => {
const paths = res.tempFiles.map((item) => item.path);
uni.navigateTo({
url: `/pages/document/detail?files=${pat ...
Posted on Thu, 14 May 2026 10:26:19 +0000 by SargeZT
WeChat Mini Program Development: Core Concepts and Advanced Techniques
Getting Started with WeChat Mini Programs
Registering a Mini Program
Visit: https://mp.weixin.qq.com/
Downloading the Development Tools
Download the official editor from: https://developers.weixin.qq.com/miniprogram/dev/devtools/stable.html
Implementing Throttling, Pagination, and Loading States
// pages/storeList/storeList.js
Page({
data: { ...
Posted on Thu, 14 May 2026 07:56:40 +0000 by Exdaix
Design and Implementation of a Second-hand Digital Goods Trading Platform for Campus Using SpringBoot, Vue, and WeChat Mini Program
Technology Stack
Backend Framework: SpringBoot
Spring Boot integrates application servers such as Tomcat, Jetty, and Undertow, eliminating the need for manual installation and configuration. A key advantage of Spring Boot is its auto-configuration capability. It automatically configures the application based on the dependencies in the project, ...
Posted on Wed, 13 May 2026 11:24:33 +0000 by hoodlumpr
WeChat Mini Program API Reference: Network, Media, Storage, and Device Integration
Network APIs
Network APIs enable developers to perform URL requests, file uploads/dwonloads, and WebSocket communication. The WeChat Mini Program development team provides 10 network API interfaces.
wx.request(Object) - Initiates HTTPS requests
wx.uploadFile(Object) - Uploads local resources to backend servers
wx.downloadFile(Object) - Downloa ...
Posted on Tue, 12 May 2026 22:09:41 +0000 by fesan
ColorUI CSS Utility Classes Reference
Typography and Text ScalingThe framework provides a set of predefined font sizes using rpx units to ensure consistency across different device screens.Utility ClassUsage ScenarioCSS Definition.text-xslExtra large display (e.g., icons, statistics)font-size: 120rpx;.text-slLarge display elementsfont-size: 80rpx;.text-xxlProminent numbers (e.g., c ...
Posted on Sat, 09 May 2026 04:30:35 +0000 by B-truE