uni-app读取json数据

每天记录一个小功能

html页面

<template>
   <view>
     <view>程序员</view>
     <view  v-for="(item,index) in  list.programmers"> 
        <view class="mytext">
           <text>姓:{{item.firstName}}</text><text>名字:{{item.lastName}}</text>
           <text>邮箱:{{item.email}}</text> 
        </view>
     </view>
     
     <view>作者</view>
     <view  v-for="(item,index) in  list.authors"> 
        <view class="mytext">
           <text>姓:{{item.firstName}}</text><text>名字:{{item.lastName}}</text>
           <text>体裁:{{item.genre}}</text> 
        </view>
     </view>
     
     <view>音乐家</view>
     <view  v-for="(item,index) in  list.musicians"> 
        <view class="mytext">
           <text>姓:{{item.firstName}}</text><text>名字:{{item.lastName}}</text>
           <text>工具:{{item.instrument}}</text> 
        </view>
     </view>
   </view>
</template>

<script>
  import  testJsonData  from  "../../common/test.json"
  console.log(testJsonData.programmers[0].email);
  export   default{
    data(){
      return {
        list:testJsonData
      }
    }
  }
    
</script>

<style>
  .mytext  text{
    display: inline-block; 
    margin-left: 20px;
    
  }
</style>

json数据页面 

        

{ "programmers": [

{ "firstName": "Brett", "lastName":"McLaughlin", "email": "aaaa" },

{ "firstName": "Jason", "lastName":"Hunter", "email": "bbbb" },

{ "firstName": "Elliotte", "lastName":"Harold", "email": "cccc" }

],

"authors": [

{ "firstName": "Isaac", "lastName": "Asimov", "genre": "science fiction" },

{ "firstName": "Tad", "lastName": "Williams", "genre": "fantasy" },

{ "firstName": "Frank", "lastName": "Peretti", "genre": "christian fiction" }

],

"musicians": [

{ "firstName": "Eric", "lastName": "Clapton", "instrument": "guitar" },

{ "firstName": "Sergei", "lastName": "Rachmaninoff", "instrument": "piano" }

] }

 效果展示:

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值