when Mini Program sends template messages to obtain access_token, appsecret, needs to be passed in the API parameters, but what we are doing is a third-party platform for saas service. How can we get the merchant s appsecret? Can merchants get appsecret...
has anyone ever done Amap s free api to achieve real-time navigation to the destination? It is mainly intended to be used on WeChat Mini Programs ...
found that writing class= xxx doesn t work, and only inline styles can be assigned. How can it be solved without in-line use? ...
I want to make a page where WeChat Mini Programs guides users to download APP. I use wx.previewImage, but there is no option to identify the QR code. ...
WeChat Mini Programs passes values from multiple pages to one page, how to keep the previous assignment operation from being overwritten const id = options.id; const address = options.address const destination = options.destination; ...
according to the title, my Mini Program mainly has a form submission to get the user unionid to get through Mini Program and the official account. Do I need to maintain my login status? When it comes to the login state, it makes me feel dizzy. ...
when the item function is selected in the check box in WeChat Mini Programs s shopping cart, you need to get the index of the adjacent element and the parent element now the console.log is undefined how can I get the index of adjacent elements and p...
what my Mini Program needs is to help the backend get the unionid to get through the official account and Mini Program. I get the login status and maintain the login. ...
<map id="map" longitude="{{longitude}}" latitude="{{latitude}}" scale="15" controls="{{controls}}" markers="{{markers}}" circles="{{circles}}&qu...
() wx.showModel: wx.showActionSheet: ...
I read the official document that this API has been adjusted, and there will be no authorization pop-up window using this API. Please use < button open-type= "getUserInfo " > < button > to guide the user to take the initiative to authorize the operati...
set the click event for a button to call wx.authorize,. If the user clicks the rejection of the authorization pop-up box for the first time, won t the authorization pop-up box be adjusted the next time the button is clicked? ...
is it true that calling wx.openLocation, directly won t pop up the authorization box? I tried three phones but didn t play. Why does the official document say that authorization is needed? ...
I use wx.openLocation to adjust the map directly. The green button in the lower right corner of the iPhone allows me to choose the route, but there is no route option on Android. Why? ...
any screen on ios can be adaptive, but it is not compatible on android. I tested it with Huawei P10. The width and height of view is the same as that of view on iphone5, and both are 320px ....
how to prevent users from clicking a single click, because each click, const recorderManager = wx.getRecorderManager () will register bind:touchstart= startRecord bind:touchend= stopRecord startRecord(e) { recorderManager.start(startObj)...
use the variable news to save the news data obtained from the interface :api.xxx.com api news ?pageNumer=1&pageSize=50 js: this.setData({ news:data.data }) wxml: <block wx:for="{{news}}" wx:for-item="new"> <view&g...
the backend considers using kafka to handle message queues, and hopes to communicate directly with the front end instead of socket.io , but the kafka protocol is customized, and it is uncertain whether Mini Program supports . because it is under i...
my Mini Program, after opening it, first go to the-> login page and successfully log in to save the token obtained by the server to globalData (the expiration time of token is 1 hour), then go to the index page, and then exit Mini Program. enter Mini Pr...
the user name and password sent through the post method in WeChat Mini Programs (self-built login method) are currently in clear text. Is there any good way to encrypt the data (do not allow plaintext transmission), so as to improve security. ...
I am currently using redis for message queuing. Because it takes a long time to perform some tasks, a server restart may cause queue consumption to fail. for example, the process to be performed is as follows: 1. Queue pop-up task 2. Put the task in...
1 data source formitem: {test: []} 2 Interface Code formitem binding test 3 when a change is added to the deep-seated test, verification is not triggered 4vue itself watch can monitor test data changes triggered by the splice method ...
can the access_token of the official account be saved in Session whether each user s Session is independent of each other, and each user will get access_token once where does access_token exist under normal circumstances ...
use scoket to do chat program, request in, and I put the request in the queue. The code is as follows: rob_vest: async function (data, socket, io) { console.log(type, ------------------------------------------ ) var queue = new Que...
want to change the selected option in the marquee through the button related codes https: jsfiddle.net vr8ymb26 5 The expected result of is to change the value of checkedCities by clicking the button, and then change the value of the checkbox,...