Network communication in the WeChat applet can only communicate with the specified domain name. The WeChat applet includes four types of network requests.
Normal HTTPS request (wx.request)
Upload file (wx.uploadFile)
Download file (wx.downloadFile)
WebSocket communication (wx.connectSocket)
Here to introduce wx.request
,wx.uploadFile
,wx.dowloadFile
Three types of network requests are the main ones
Set the domain name
If you want the WeChat applet to communicate over the network, you must Set the domain name first, otherwise an error will occur:
The URL domain name is illegal, please try again after mp background configuration
Needs to be set in the mini program of the WeChat public platform domain name.
You can see the setting options in the setting interface of the WeChat applet:
Settings
SelectDevelopment Settings
:
Development settings
You can see the server settings:
Server Settings
Here you can set the domain names corresponding to four types of network access. Each type of network request needs to set a domain name. Note that if you set the domain name https://example here .com/api/, then https://example.com/api
cannot be called, and must be followed by /
.
http request
Use wx.request
to initiate an http request. A WeChat applet is limited to only 5 network requests at the same time .
function queryRequest(data){ wx.request({ url:"https://example.com/api/", data:data, header:{ // "Content-Type":"application/json" }, success:function(res){ console.log(res.data) }, fail:function(err){ console.log(err) } }) }
The above code will send an http get request and then print out the returned results. The parameters are also relatively easy to understand.
url
The url address of the serverdata
The request parameters can be Stringdata:"xxx=xxx&xxx=xxx"
or Objectdata:{"userId":1}
header
Set the request headersuccess
Interface success callbackfail
Interface Failed callback
There are also two parameters not in the code:
method
http method, default For GET requestcomplete
The callback after calling the interface will be called regardless of success or failure
Upload files
The api for uploading files is wx.uploadFile
, which will initiate a http post
request, in which the Content-type
is multipart/form-data
. The server needs to receive files according to the Content-type
type. Example code:
function uploadFile(file,data) { wx.uploadFile({ url: 'http://example.com/upload', filePath: file, name: 'file', formData:data, success:function(res){ console.log(res.data) }, fail:function(err){ console.log(err) } }) }
among which url
, header
, success
, fail
and complete
are the same as ordinary http requests. (WeChat applet application number exchange group 563752274)
The different parameters here are:
name
The key corresponding to the file, the server needs to passname
Parameters to get the fileformData
Other parameters that can be used in the http request
Download file
The api for downloading files is wx.downloadFile
. This api will initiate an http get request and return the temporary path of the file after the download is successful. Sample code:
function downloadFile(url,typ,success){ wx.downloadFile({ url:url, type:typ, success:function(res){ if(success){ success(res.tempFilePath) } }, fail:function(err){ console.log(err) } }) }
The parameters of url
, header
, fail
, complete
and wx.uploadFile
are consistent. The different parameters are:
type
: The type of the downloaded resource, which is used for automatic identification by the client. Parameters that can be usedimage/audio/ video
-
success
: Callback after successful download, returns the temporary directory of the file with thetempFilePath
parameter:res ={tempFilePath:'File path'}
After successful download, it is a temporary file, which can only be used during the current running of the program. If you need to save it permanently, you need to call the methodwx.saveFile
Actively persist files, example code:function svaeFile(tempFile,success){ wx.saveFile({ tempFilePath:tempFile, success:function(res){ var svaedFile=res.savedFilePath if(success){ success(svaeFile) } } }) }
Use
wx.saveFile
to save temporary files locally and provide them for use when the applet is started next time. Parameters: tempFilePath
需要被保存文件的路径success
保存成功的回调,返回保存成功的路径,使用res.savedFilePath
可以获取保存成功的路径fail
失败的回调complete
结束的回调
超时的设置
在微信小程序开发:MINA中已经提到了在app.js
中设置networkTimeout
可以设置四种类型网络访问的超时时间:
"networkTimeout":{ "request": 10000, "connectSocket": 10000, "uploadFile": 10000, "downloadFile": 10000 }
这里设置的超时时间对应着四种类型的网络请求。
更多WeChat applet development: http request相关文章请关注PHP中文网!

Hot AI Tools

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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Atom editor mac version download
The most popular open source editor

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Dreamweaver Mac version
Visual web development tools

Zend Studio 13.0.1
Powerful PHP integrated development environment
