


Summary of the use of markup language (Markdown) introduction
Markdown is a markup language that can be written using an ordinary text editor. Through simple markup syntax, it can make ordinary text content have a certain format, thereby making the text easy to read and write, and enhancing readability. Therefore, Markdown is widely used in communication and learning websites with large amounts of text such as hexo personal blog, Github, and Coding. The following is the format commonly used in Markdown: 1. Title There are six levels of title, divided into level one, level two... to level five, level six, similar to the h1h6 tag in HTML,...
May 22, 2017 am 11:44 AM
WeChat development demo and actual mall development
WeChat mini program mall development and real machine testing are useful! This example is purely written by myself. I have invaded and deleted it. I started writing the code. I specially share it as follows.
May 22, 2017 am 11:33 AM
WeChat Development Practical Zhihu Daily
Preface After reading so many introductions to mini programs, you must have a certain understanding of mini programs. This article will no longer focus on getting started. Now we will practice it through a Zhihu Daily mini program to deepen our understanding of the WeChat mini program API. By the way, you can read this article to get started, which contains a preliminary introduction to the use of tools: p/37dfcea4a2f8 Introductory Tutorial on WeChat Mini Program Development https://mp.weixin.qq.com/de...
May 22, 2017 am 11:26 AM
WeChat development: making a running WeChat applet
First published in my Preface I have put all the code on github weChatAppRun. You can download it to have a look or star it first. I will make some optimization updates in the future. Now it is just a learning demo for everyone to communicate and learn. The actual application needs more optimization. Text 1. Preparation 1. To register a mini program account, you must use an email address that has not registered a public account. 2. The registration process requires a lot of certifications. There are many certifications, which are relatively cumbersome. If it is just development and testing for the time being, without review or release, as long as the camp...
May 22, 2017 am 11:18 AM
Detailed explanation of Flex layout for WeChat development
The WeChat applet page layout adopts Flex layout. Flex layout is a new solution proposed by W3c in 2009, which can realize various page layouts simply, completely and responsively. Flex layout provides the alignment, direction, and order of elements within a container, and they can even be dynamic or indefinitely sized. The main feature of Flex layout is the ability to adjust its child elements to fill the appropriate space in the most suitable way on different screen sizes. Features of Flex layout: scalable in any direction, left, right, down, up in style...
May 20, 2017 pm 04:40 PM
Share an example tutorial on data decryption in WeChat development
Recently, I am using the thinkphp framework to write the server side of the WeChat applet. Maybe it is because of Virgo, so I downloaded a PHP WeChat decryption demo from the official website. It can be integrated into one class without much code, so I have to divide it into several. Classes were written. Considering that the thinkphp 5.0 framework seemed to be too painful for extended class references, it was integrated into a class for easy calling. Friends in need can download it. Baidu disk download address: https://pan.baidu.com/s/1kURMQ2b If necessary...
May 20, 2017 pm 04:19 PM
Post request for WeChat development pitfalls
1.Post request wx.request(OBJECT) wx.request initiates an HTTPS request. A WeChat applet can only have 5 network request connections at the same time. The official website describes WeChat applet example. This request GET method is OK, and the header does not need to be added. But POST has a bigger problem. I use the following code for debugging (Code 1): Pay attention to the picture below, the prompt in the WeChat development tool: POST request will put the value of data in the Request Pa...
May 20, 2017 pm 04:09 PM
WeChat development personal account application process
Compared with corporate accounts, personal accounts lack payment and other functions and are similar to personal subscription accounts. The mini program is open to individual developers to apply for registration. Individual users can visit the WeChat public platform, scan the QR code to verify their personal identity, and then complete the mini program account application and code development. Next, let’s talk about the application process for personal mini programs.
May 20, 2017 pm 04:05 PM
What should we pay attention to when developing WeChat?
The rise of WeChat mini programs has given hope to many companies that cannot afford traditional APP development costs. Some companies shift their development focus on the basis of having technical teams and App development experience, while some companies use this WeChat mini program development tool that does not require direct generation of code for rapid development. So what should we pay attention to when developing WeChat mini programs?
May 20, 2017 pm 04:00 PM
Share an example tutorial on how to develop cash red envelopes on WeChat public accounts
Welcome to leave a message and forward WeChat speed development series of articles: Click here The previous articles introduced WeChat payment. Official account payment, WeChat scan code payment, card payment, WeChat payment This article will talk about the payment tool cash red envelope preparation work in WeChat merchants [Official Document] 1. Activate Cash Red Envelope Permissions Before using cash red envelopes, please go to Activate Cash Red Envelopes Function. Operation path: [Log in to WeChat Pay Merchant Platform -> Product Center -> Cash Red Packet -> Activate]. 2. Download the API certificate. When a merchant calls the WeChat red envelope interface, the server will authenticate...
May 19, 2017 pm 04:18 PM
Share an example tutorial on developing custom menus for WeChat public accounts
Welcome to leave a message, forward, and tip the project source code reference address. Click here to welcome Start. The previous articles have already explained how to import the project, how to start the configuration project, how to become a developer, and how to interact with source code analysis messages (if the first four items If you are not very clear, you can read here about the rapid development of WeChat public accounts. This article will talk about how to implement a custom menu. There are two ways to implement a custom menu: 1. Edit mode 2. Development mode. The editing mode is very simple and I won’t go into details. ..
May 19, 2017 pm 04:12 PM
Share an example tutorial on developing WeChat public account for credit card payment
Welcome to leave a message and forward a series of articles on WeChat rapid development: Click here. The previous two articles introduced WeChat official account payment and WeChat scan code payment. This article will specifically talk about WeChat credit card payment. Credit card payment official document scenario introduction. Step 1: The user chooses to pay by credit card. Pay and open WeChat, enter the "Me" > "Wallet" > "Swipe Card" barcode interface. Step 2: The cashier operates in the merchant system to generate a payment order, and the user confirms the payment amount. Step 3: The merchant's cashier scans the user's barcode with a scanning device. /QR code, merchant cashier system submits payment step 4: After paying with WeChat...
May 19, 2017 pm 04:02 PM
An example tutorial for sharing WeChat public account development template messages
Welcome to leave a message and forward a series of articles on the rapid development of WeChat: Click here. I have a slight cold recently, and the update progress of the article has been delayed. I hope this series of articles will be helpful to your research on WeChat public development. The previous articles introduced WeChat payment. Official account payment, WeChat scan code payment, card payment, WeChat payment. This article will talk about business notifications in WeChat. How to check whether WeChat template messages have permission. In communication groups, people always ask about personal subscription number, certified subscription number, Whether the service number and authenticated service number have permission to use an interface. In fact, this question is very simple, in...
May 19, 2017 pm 03:56 PM
Backend login after WeChat development (login without WeChat account)
Recently, I wrote a small tool program. According to the requirements, you do not need to log in with the WeChat account provided by WeChat. You need to call the background login interface to log in. Since most of the mini programs use WeChat information to log in, and rarely use their own backend to log in, there are various pitfalls when writing them. Now I will share the code that got through the pitfalls with everyone! (PS: If there is anything wrong, please share it.) Without further ado, go directly to the code. Find app.js and write the following code in it. Hit the blackboard to highlight the key points.
May 19, 2017 pm 03:54 PM
Hot tools Tags

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article
How to fix KB5055523 fails to install in Windows 11?
How to fix KB5055518 fails to install in Windows 10?
Roblox: Grow A Garden - Complete Mutation Guide
Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
How to fix KB5055612 fails to install in Windows 10?

Hot Tools

vc9-vc14 (32+64 bit) runtime library collection (link below)
Download the collection of runtime libraries required for phpStudy installation

VC9 32-bit
VC9 32-bit phpstudy integrated installation environment runtime library

PHP programmer toolbox full version
Programmer Toolbox v1.0 PHP Integrated Environment

VC11 32-bit
VC11 32-bit phpstudy integrated installation environment runtime library

SublimeText3 Chinese version
Chinese version, very easy to use
