v-show v-if xxx Vuex_uniapp 局域网接口">
当前位置:   article > 正文

uni-app:第四章 网络接口和其他_uniapp 局域网接口

uniapp 局域网接口
<template>
	<view>
		<view v-show="false">v-show</view>
		<view v-if="true">v-if</view>
		<view>xxx</view>
		<button type="primary" @click="toPath">路由跳转</button>
		<view>
			<view>Vuex测试</view>
			<view>{{num}}</view>
			<button type="primary" @click="add">add方法</button>
		</view>
	</view>
</template>

<script>
	export default {
		data() {
			return {
			};
		},
		methods:{
			toPath(){
				uni.switchTab({
					url:"../index/index"
				})
			},
			add(){
				this.$store.commit("add")
			}
		},
		/**
		 * 计算
		 */
		computed:{
			num(){
				return this.$store.state.num;
			}
		},
		onLoad: () => {
			console.log("onLoad");
			uni.request({
			    url: 'https://bird.ioliu.cn/weather', //仅为示例,并非真实接口地址。
			    data: {
			        city: '杭州'
			    },
			    header: {
			        'token': '123456' 
			    },
			    success: (res) => {
			        console.log(res.data);
			    }
			});
		},
		onReady() {
			console.log("onReady");
			console.log(this.$store.state.num)
		},
		onShow: () => {
			console.log("onShow");
		},
		onHide: () => {
			console.log("onHide");
		},
		onPullDownRefresh: () => {
			console.log("onPullDownRefresh");
		},
		onReachBottom: () => {
			console.log("onReachBottom");
		},
		onTabItemTap: () => {
			console.log("点击 tab 时触发,参数为Object");
		}
		
	}
</script>

<style >

</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/748883
推荐阅读