我是靠谱客的博主 跳跃溪流,最近开发中收集的这篇文章主要介绍Vue指令v-for之遍历输出JavaScript数组,json对象的几种方式v-for对数组的几种输出方式:v-for对json格式的几种输出方式,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

定义数据:

<script>
    new Vue({
        el:"#test",
        data:{
            message:"infor",
            list:["a","b","c","d","e"],
            web:{
                "百度":"https://www.baidu.com",
                "搜狐":"https://www.sohu.com",
                "新浪":"https://www.sina.com",
                "淘宝":"https://www.taobao.com"
            }
        }
    })
</script>

html结构:

<div id="test">
        <div>{{ message }}</div>
        <div>{{ list }}</div>
        <div>{{ web }}</div>
    </div>

输出结果:

v-for对数组的几种输出方式:

1.只输出value值

html代码:

<div id="test">
        <div v-for = "item in list">{{ item }}</div>
    </div>


输出结果:

2.输出value值且输出对应的索引值

html代码:

<div id="test">
        <div v-for = "(item,index) in list">{{ item }}的索引值是{{ index }}</div>
    </div>

输出结果:


 

v-for对json格式的几种输出方式

1.只输出value值

html代码:

<div id="test">
        <div v-for = "item in web">{{ item }}</div>
    </div>


输出结果:

2.输出value值和key值

html代码:

<div id="test">
        <div v-for = "(item,key) in web">{{ key }} 的网址是 : {{ item }}</div>
    </div>


输出结果:

3.输出value值,key值和索引值index

html代码:

<div id="test">
        <div v-for = "(item,key,index) in web">{{ index }}__{{ key }} 的网址是 : {{ item }}</div>
    </div>


输出结果:

可以看出,在数组里面,小括号里面的参数第一位是value值,第二位是索引值

在json里面,第一位是value值,第二位是key值,第三位是索引值

有的文章里面说$index是数组的内置变量数组下标,$key是json内置变量,可是我没有测出来,且提示有错,不知道这个到底对不对。


 

最后

以上就是跳跃溪流为你收集整理的Vue指令v-for之遍历输出JavaScript数组,json对象的几种方式v-for对数组的几种输出方式:v-for对json格式的几种输出方式的全部内容,希望文章能够帮你解决Vue指令v-for之遍历输出JavaScript数组,json对象的几种方式v-for对数组的几种输出方式:v-for对json格式的几种输出方式所遇到的程序开发问题。

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部