uniapp은 어떻게 요청을 시작합니까?

coldplay.xixi
풀어 주다: 2023-01-13 00:44:22
원래의
7003명이 탐색했습니다.

uniapp이 요청을 시작하는 방법: 1. [uniapp.request({})] 방법을 사용합니다. 2. [this.$axios({})] 방법을 사용합니다. 코드는 [this.$axios입니다. ({method: 'get',url: this.$api+ '/Test].

uniapp은 어떻게 요청을 시작합니까?

본 튜토리얼의 운영 환경: windows7 시스템, uni-app2.5.1 버전, thinkpad t480 컴퓨터.

권장 (무료): uni -app development tutorial

uniapp이 요청을 시작하는 방법:

1 uniapp.request({}) 방법을 사용하세요uniapp.request({})方法

uni.request({
uni.request({
url: this.$api+'/Test/student/test',
header: {
'content-type': 'application/x-www-form-urlencoded' //自定义请求头信息
},
//请求成功后返回
success: (res) => {
// 请求成功之后将数据给Info
if(res.statusCode===200)
{
self.Info = res.data;
}
}
});
로그인 후 복사

2、使用this.$axios({})

this.$axios({
method: 'get',
url: this.$api + '/Test/student/test'
// data: {
// userName: 'Lan',
// password: '123'
// },
})
.then(function(res) {
if (res.data.code === 1234) {
self.Info = res.data
}
})
.catch(function(error) {
console.log(error.statusCode)
})
로그인 후 복사

2. this.$axios({}) 메소드를 사용하세요.

Vue.prototype.$api='http://192.168.2.114:8099'
Vue.prototype.$axios=axios
로그인 후 복사
this.a p i , th i s . api, this.api, this.axios는 main.js에 전역 변수로 등록되어야 합니다.

<script>
export default {
data() {
return {
Info: &#39;&#39;,
username: &#39;工程师&#39;,
pwd: &#39;&#39;
}
},
methods: {
getInfo() {
// var self = this;
// uni.request({
// url: this.$api+&#39;/Test/student/test&#39;,
// header: {
// &#39;content-type&#39;: &#39;application/x-www-form-urlencoded&#39; //自定义请求头信息
// },
// //请求成功后返回
// success: (res) => {
// // 请求成功之后将数据给Info
// if(res.statusCode===200)
// {
// self.Info = res.data;
// }
// }
// });
var self = this
this.$axios({
method: &amp;#39;get&amp;#39;,
url: this.$api + &amp;#39;/Test/student/test&amp;#39;
// data: {
// userName: &amp;#39;Lan&amp;#39;,
// password: &amp;#39;123&amp;#39;
// },
})
.then(function(res) {
if (res.data.code === 1234) {
self.Info = res.data
}
})
.catch(function(error) {
console.log(error.statusCode)
})
}
}
}
</script>

로그인 후 복사
전체 샘플 코드:

rrreee

관련 무료 학습 권장 사항:
프로그래밍 비디오🎜🎜🎜

위 내용은 uniapp은 어떻게 요청을 시작합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿