-
WeChat Mini Programs searches the content of a page, is there any way to achieve keyword highlighting?
the text matched by the search box above an article is highlighted to realize the idea. ...
-
After Mini Program shared it, others clicked on it, how to get back to the home page?
for example, the details page, after sharing, other people open, can only see this page, I did not find a useful way to set API back to a route. You have to write it on the page? ...
-
How to use Mini Program wx.createWorker ()?
app.json is configured with "Workers ": "Workers ",
everything else is written according to the document
...
-
WxParse error VM57117:1 undefined
WxParse data call display succeeded, but there was an error VM57117:1 undefined
template < import src= ".. wxParse wxParse.wxml " >
<template is="wxParse" data="{{wxParseData:imgcontent.nodes}}" >
js ...
-
Does Mini Program support native javascript? What did you say?
1, the three major components of JavaScript-ECMAScript, DOM (document object model, corresponding to document object), and BOM (browser object model, corresponding to window object). 2. Mini Program supports ECMAScript, but does not support document,win...
-
The technical realization of "who are we" Mini Program?
how is the picture on Mini Program who made our picture synthesized? Is there any great god who knows ...
-
WeChat Mini Programs data transmission
how does the following code wx.navigateTo get the data of wx.request ?
use this.data. * to undefined directly and ask the master to give me some advice
Thank you here!
index.js
var config = require( .. .. config )
var util = require( .. .. u...
-
Mini Program's data binding problem
I want to achieve an effect similar to two-way data binding, but Mini Program is a typical one-way data binding, so I add a layer of binding manually and find that stutter is obvious, for example:
1, there is an input
<input value={{n}} bindinput=...
-
WeChat Mini Programs has been reminding users that the information interface is no longer supported and how to cancel it, as shown below
...
-
How to make Mini Program "read aloud"?
wanted to be a Mini Program who memorized words, but found that no corresponding api interface was provided. After searching the Internet, I found that SpeechSynthesisUtterance allows JavaScript to read aloud without networking. But when the real phone i...
-
WeChat Mini Programs's wx.sendSocketMessage interface can not send ArrayBuffer or is it wrong?
currently, a project is under development. The following code is used to send data on Wechat developer s tool. The server can receive the data and parse it successfully, but the debug QR code of scanning developer s tool cannot send data on the real p...
-
In Mini Program's nodejs template, the database of the newly added table in the cAuth.sql file does not respond.
cAuth.sql ...
-
How does the mini-routine subcomponent button call from submission?
as shown in the picture, yellow is a large page, and red is a component that introduces (components), and wraps the red component with from tags. Now I want to use the button of the red component to trigger a yellow from submission event. Is that okay? ...
-
How to convert the tlv format data received by socket in WeChat Mini Programs into json data of JS?
for example, the data is received through Mini Program s websocket. The binary array is .
[0, 0, 0, 45, 0, 2, 0, 0, 0, 0, 1, 0, 4, 0, 0, 0, 0, 2, 0, 8, 115, 117, 99, 99, 101, 101, 100, 0, 3, 0, 4, 0, 0, 0, 0, 4, 0, 7, 49, 48, 48, 48, 48, 48, 0]
the se...
-
Mini Program home page is a transit page to jump to other pages, mobile preview can only enter once, the second time can not enter.
The home page is a transit page, get a value from the server, and then jump to the corresponding page according to this value. And then I found the problem. No matter using navigatorTo or redirecTo, mobile phone to scan the code, you can enter it for the...
-
How does Mini Program dynamically modify the style of page tags
how does the address of the background image taken by the interface change the background image of the outermost page?
wxss
page {
background: url("http: music.163.com api img blur 109951163240732641") no-repeat;
background-position: 5...
-
Mini Program, how to add a method to data rendering and change its value, such as the following figure and code
< H2 > I want to change the red box in the picture to how many days ago < H2 >
...
-
Mini Program swiper round robin
WeChat Mini Programs swiper slider view container,
:
I wonder if they use swiper implementations
...
-
Mini Program uses ES6 syntax, will there be a problem on Android low-end browsers?
the first time I developed Mini Program, I saw that Mini Program could set es6 to es5, so I used some es6 syntax, such as let, const, arrow function and this in it. But I don t know if Mini Program will be all right in the low version of Android browser...
-
The method in the wepy framework computed, how to pass parameters in the template
there is such a demand at present:
<view wx:for= {{getUserInfo}} wx:key= index wx:for-index= index >
<!-- -->
<view>{{item.name}}< view>
<!-- -->
<view>{{setUserName}}< view>
< view&...