我是靠谱客的博主 危机大侠,最近开发中收集的这篇文章主要介绍uniapp怎么发起请求,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

本教程操作环境:windows7系统、uni-app2.5.1版本、thinkpad t480电脑。

推荐(免费):uni-app开发教程

uniapp发起请求的方法:

1、使用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)
})
登录后复制

this.a p i , t h i s . api,this.api,this.axios要在main.js当中注册为全局变量

Vue.prototype.$api='http://192.168.2.114:8099'
Vue.prototype.$axios=axios
登录后复制

完整示例代码:

<template>
<view class="content">
<span>用户名:</span>
<input class="username" type="text" :value="username" placeholder="请输入用户名" />
<view class="">
<button type="default" @click="getInfo()">测试</button>
{{ Info }}
</view>
</view>
</template>
<script>
export default {
data() {
return {
Info: '',
username: '工程师',
pwd: ''
}
},
methods: {
getInfo() {
// var self = this;
// 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;
// }
// }
// });
var self = this
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)
})
}
}
}
</script>
<style>
.span {
width: 30px;
}
.username {
border-radius: 10px;
border: 2rpx solid #007aff;
width: 80px;
padding: 10px;
}
</style>
<!-- <template>
<p>用户名:</p>
<input type="text" placeholder="请输入用户名" value=""/>
</template>
<script></script>
<style></style> -->
登录后复制

以上就是uniapp怎么发起请求的详细内容,更多请关注靠谱客其它相关文章!

最后

以上就是危机大侠为你收集整理的uniapp怎么发起请求的全部内容,希望文章能够帮你解决uniapp怎么发起请求所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(87)

评论列表共有 0 条评论

立即
投稿
返回
顶部