Program problem of wechat applet

1 questionnaire stem [10 points] in the applet project, the data given in index.js is used to supplement the code in index.wxml and render the effect shown in the figure below. Note: fill in the blank number in the standard definition, and write the code filled in by yourself into the answer box according to the numbering sequence. index. T ...

Added by raytri on Mon, 27 Dec 2021 14:24:42 +0200

The applet realizes the multi selection function of TreeView tree

If you don't say much, let's start with the renderings: The applet realizes the multi selection function of Treeview tree Realization idea Source data structure First, our data structure is roughly: [ { "id": "0", "name": "classification of animals", "pid": "-1", "children": [ { "id" ...

Added by MartinGr on Fri, 24 Dec 2021 08:03:09 +0200

Wechat applet learning journey -- improving the pages page -- Font Icon, data binding, condition / list rendering, event / catch/bind and routing learning

Previously: Wechat applet learning journey - production of the first page Wechat applet learning journey - making your own applet based on zero - making the second page Introduction to wechat applet (3) We made the article section earlier. The simulated user collection articles and browsing times we made at that time used png format ...

Added by astaroth on Wed, 22 Dec 2021 06:04:58 +0200

Exploration of wechat applet jump -- why does open label exist?

1. What are the ways to pull up applets? Wechat open label Applet link URL Scheme Applet link URL Link APP pull up applet 2. Examples of various approaches URL Scheme example URL Link and wechat open label example Looking at the second example and official documents, you can see that URL Link is the URL Scheme used outside wechat and th ...

Added by JMJimmy on Sat, 18 Dec 2021 14:49:51 +0200

Nail / wechat applet canvas handwritten signature, signature rotation

###Foreword Recently, the nail applet developed by the company requires handwritten signature. I wrote one. Let's see the effect first. Wechat applet can also be used. ####The first step is page layout I found an example of handwritten signature on the Internet, copied and modified it, and posted the code directly: //Layout code <view ...

Added by nineseveninteractive on Sat, 18 Dec 2021 05:03:41 +0200

Imitation [get things] wechat applet full tutorial (hands-on)

preface Recently, I'm learning wechat applet development, and I'm also working with two students to copy the wechat APP applet. Here I mainly share my learning process and some pits I have stepped on, hoping to help you. "I am an old programmer who has been engaged in Web front-end development for six years. At the beginning of this ...

Added by web_noob on Fri, 17 Dec 2021 14:03:25 +0200

Wechat applet one week introduction - conclusion - production of movie details page

Previously: Wechat applet learning journey - production of the first page Wechat applet learning journey - making your own applet based on zero - making the second page Wechat applet learning journey – improving pages page – learning Font Icon, data binding, condition / list rendering, event / catch/bind and routing Wech ...

Added by NerdConcepts on Fri, 17 Dec 2021 08:09:27 +0200

Construction and simple operation of JSON server environment for wechat applet

Learning video: https://www.bilibili.com/video/BV1Gv411g7j6?p=81 Template Mainly selected articles app. The path is written in JSON Define template In index Copy the following from wxml to articletemplate In wxml, the static content is modified to dynamic <!--Selected article list structure template--> <!-- Change static text to d ...

Added by peranha on Thu, 16 Dec 2021 04:34:38 +0200

WeChat small program: pay attention to official account component custom style

catalogue outlineImplementation exampleTipsPay attention to me and don't get lost outline Concerned about WeChat public number component, the official account provides official-account, which will be displayed only in a fixed scenario, such as the small program that the scanning code will enter. More relevant scenarios: Development capabil ...

Added by sub7av on Tue, 14 Dec 2021 09:30:27 +0200

Applet development

Base point 1 > applet body app . js app . json: public configuration class, which can configure global messages app . wxss: common style sheets 2 > single page body js: page logic wxml: similar to HTML, page DOM json: page configuration file wxss: page style sheets 3 > app . JSON overview https://developers.weixin.qq ...

Added by websteve on Mon, 13 Dec 2021 14:42:46 +0200