When developing with Uniapp, requesting the interface is a common operation. Sometimes the data returned by the interface is a JSON object, and we need to convert it into a JavaScript object for operation. So how to receive this object in Uniapp?
The request API used by Uniapp is uni.request()
, which supports configuration items success
and fail
. The parameter data
in success
represents the response data, which is a string type. We need to convert this string type response data into a JavaScript object.
We can use the JSON.parse()
method to convert:
uni.request({ url: 'http://example.com/api/data', success: (res) => { let data = JSON.parse(res.data) console.log(data) } })
In the above code, res.data
is returned from the server data, we convert it into a JavaScript object through the JSON.parse()
method and output it to the console.
If the data returned by the server is an array, we can directly convert the array as a parameter in the JSON.parse()
method:
uni.request({ url: 'http://example.com/api/data', success: (res) => { let data = JSON.parse(res.data) console.log(data) } })
In the above code , if the response data is an array, the JSON.parse()
method will convert it into a JavaScript array.
It should be noted that when the data format returned by the server is not in JSON format, JSON.parse()
will throw an exception, so we should first determine whether the response data conforms to the Require.
In addition to the JSON.parse()
method, Uniapp also provides an optional configuration item dataType
, which specifies that the response data type is JSON, which will Make res.data
directly a JavaScript object:
uni.request({ url: 'http://example.com/api/data', dataType: 'json', success: (res) => { console.log(res.data) } })
Through the above method, we can simply convert the JSON object returned by the server into a JavaScript object for operation.
The above is the detailed content of How to receive objects in uniapp request. For more information, please follow other related articles on the PHP Chinese website!

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

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

Hot Article

Hot Tools

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.

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Notepad++7.3.1
Easy-to-use and free code editor
