要使用uniapp請求后端接口數(shù)據(jù),可以使用uni.request方法。
首先,在uniapp項目中的main.js
文件中引入uni.request方法:
import { uniRequest } from '@/utils/request'
Vue.prototype.$uniRequest = uniRequest
然后,在utils
文件夾下創(chuàng)建一個request.js
文件,定義uni.request方法:
export const uniRequest = (url, method = 'GET', data = {}) => {
return new Promise((resolve, reject) => {
uni.request({
url: url,
method: method,
data: data,
header: {
'content-type': 'application/json'
// 這里可以設置其他header
},
success: res => {
if (res.statusCode === 200) {
resolve(res.data)
} else {
reject(res)
}
},
fail: err => {
reject(err)
}
})
})
}
現(xiàn)在你可以在組件中使用uniRequest
方法來請求后端接口數(shù)據(jù)了。例如,在一個組件的methods
中使用uniRequest
方法獲取數(shù)據(jù):
methods: {
getData() {
this.$uniRequest('/api/data').then(res => {
console.log(res)
}).catch(err => {
console.log(err)
})
}
}
這樣就可以在uniapp中請求后端接口數(shù)據(jù)了。根據(jù)后端接口的要求,可以在uniRequest
方法中設置請求的url
、method
和data
等參數(shù)。