uni-app调用本地json解析实现方法

1.创建一个data/data.js文件,存放数据

const data = [{
		id: "1",
		name: "张三",
		position: "../../static/ren/tx1.jpg",
		identity: "管理员",
	},{
		id: "2",
		name: "李四",
		position: "../../static/ren/tx2.jpg",
		identity: "游客"
	},
	{
		id: "3",
		name: "陈五",
		position: "../../static/ren/tx3.jpg",
		identity: "游客"
	}
]
module.exports = {
	data1: data //前一个data1是将后一个data对象数组暴露出去的命名的名字,自己定义的
}

2.template中的写法

<template>
	<view v-for="item in myJson.data1" @key="item.id" class="birthday-item">
		<view class="img">
			<navigator>
				<image :src="item.position" mode=""></image>
			</navigator>
		</view>
		<view class="info">
			<view class="name">
				<view class="title">
					<text class="title-more">{{item.name}}</text>
				</view>
			</view>
			<view class="qyt-mask">{{item.identity}}</view>
		</view>
	</view>			
</template>

<script>
//为了区分,这里用data3表示,全部用data也可以,后面的myJson放的据说没有
	import data3 from "../../data/myJson.js"
	export default {
		data() {
			return {
				title: 'Hello',
				myJson:data3,
				// myMemoriaJson: [{
				// 		id: "1",
				// 		name: "张三",
				// 		position: "../../static/ren/tx1.jpg",
				// 		identity: "管理员"
				// 	},
				// 	{
				// 		id: "2",
				// 		name: "李四",
				// 		position: "../../static/ren/tx2.jpg",
				// 		identity: "游客"
				// 	},
				// 	{
				// 		id: "3",
				// 		name: "陈五",
				// 		position: "../../static/ren/tx3.jpg",
				// 		identity: "游客"
				// 	}
				// ],
		},
		methods: {

		}
	}
</script>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值