IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> 首页父子组组件间传值 -> 正文阅读

[JavaScript知识库]首页父子组组件间传值

首页父子组组件间传值

1)父组件通过属性传值

Home.vue

//建立data存储页面各种数据
data () {
        return{
            city:’’, //城市
            swiperList:[], //轮播图
            iconList:[],//热点Icon
            recommendList:[],//热销推荐
            weekendList:[],//周末去哪儿
        }
},
//修改methods,添加json数据绑定
methods:{
        getHomeInfo (){
            axios.get('/api/index.json').then(this.getHomeInfoSucc)
        },
        getHomeInfoSucc (res) {  
            res = res.data
            if(res.ret && res.data){
                const data = res.data
                //添加跟json数据绑定
                this.city = data.city //城市
                this.swiperList = data.swiperList //轮播图
                this.iconList = data.iconList //热点Ico
                this.recommendList = data.recommendList //热销推荐
                this.weekendList = data.weekendList //周末去哪儿
            }
        }
    },
//通过属性给子组件传值
<home-header :city="city"></home-header>
<home-swiper :list="swiperList"></home-swiper>
<home-icons :list="iconList"></home-icons>
<home-recommend :list="recommendList"></home-recommend>
<home-weekend :list="weekendList"></home-weekend>

2)子组件通过props接收数据

Header.vue

props:{
        city:String //要区分大小写
    },
#元素内容修改
//元素内容的“城市”换成
{{this.city}}

Swiper.vue

设置完轮播图以后,因为一开始swiperList是一个空数组,所以渲染完以后显示的是数组最后一项。

给swiper标签设置v-if,里面传入swiperList数组的长度:一开始是空数组的时候它就不会被渲染,当它里面有东西了才被渲染,就可以解决这个问题了。

但是一般不在标签里写逻辑性代码,所以在computed里写一个showSweiper方法

//先去掉之前swiperList数组里的数据取而代之添加props
props:{
        list:Array
    },
//添加计算属性,解决轮播图默认显示为最后一张图的问题
computed: {
        showSweiper () {
            return this.list.length
        }
}
//添加计算属性方法:v-if=“showSweiper",解决轮播图默认显示为最后一张图的问题
<swiper :options="swiperOptions" v-if="showSweiper">
    //循环的v-for="item of swiperList" 替换成v-fo="item of list"
    <swiper-slide v-for="item of list" :key="item.id”>…</swiper-slide>
</swiper>

Icons.vue

//先去掉之前iconList数组里的数据取而代之添加props
props:{
        list:Array
    },
//修改计算属性里
computed:{
    pages(){
            const pages = []
            //修改this.iconlist.forEach为:this.list.forEach
            this.list.forEach((item,index) => {...}
}
#元素内容修改
//循环的v-for="item of iconList" 替换成v-fo="item of list"
<div class="icon" v-for="item of list" :key="item.id”>

Recommend.vue

//先去掉之前recommendList数组里的数据取而代之添加props
props:{
        list:Array 
    },
#元素内容修改
//循环的v-for="item of recommendList" 替换成v-fo="item of list"
<li class="item border-bottom" v-for="item of list" :key="item.id">

Weekend.vue

//先去掉之前weekendList数组里的数据取而代之添加props
props:{
        list:Array
    },
#元素内容修改
//循环的v-for="item of weekendList" 替换成v-fo="item of list"
<li class="item border-bottom" v-for="item of list" :key="item.id">
  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2021-08-29 08:59:40  更:2021-08-29 09:00:01 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 13:20:53-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码