要在UniApp中使用uni.request方法,需要先引入uni對象。
import uni from 'uni-app';
uni.request({
url: 'http://example.com/api',
method: 'GET',
data: {
key1: 'value1',
key2: 'value2'
},
header: {
'content-type': 'application/json'
},
success: (res) => {
console.log(res.data);
},
fail: (err) => {
console.log(err);
}
});
在上面的示例中,我們使用了uni.request方法發送了一個GET請求,請求的URL是’http://example.com/api’,請求參數是key1=value1和key2=value2。在成功回調函數中,我們打印了返回的數據;在失敗回調函數中,我們打印了錯誤信息。
你可以根據自己的需求修改請求方法、URL、請求參數、請求頭等。