1 Star 0 Fork 0

王刚/front-end-study

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue遍历对象-对象数组.txt 1.51 KB
一键复制 编辑 原始数据 按行查看 历史
qiaoyuxiang 提交于 2020-01-09 18:26 . 2020-01-09
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<!-- Step1.对于vue,可以用cdn -->
<script src="https://cdn.bootcss.com/vue/2.5.17-beta.0/vue.min.js"></script>
<style>
#app div{
padding: 2%;
margin-bottom: 1%;
border-bottom: 1px solid #ddd;
background-color: blanchedalmond;
}
</style>
</head>
<body>
<div id="app">
<!-- 对象遍历 -->
<div v-for="(value, key, index) in object">
{{ index }}. {{ key }} - {{ value }}
</div>
<!-- 数组对象遍历 -->
<div v-for="(value, key, index) in objectArray">
姓名:{{value.name}}
年龄:{{value.age}}
</div>
</div>
<script type="text/javascript">
var app = new Vue({
el: '#app',
data: {
// 对象
object: {
name: '张三',
names: '李四'
},
// 数组对象
objectArray: [
{
name: '张三',
age: 14
},
{
name: '李四',
age: 18
}
]
}
})
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/boniu-w/front-end-study.git
git@gitee.com:boniu-w/front-end-study.git
boniu-w
front-end-study
front-end-study
master

搜索帮助