国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

angular4父組件向子組件傳值,子組件向父組件傳值的方法

kviccn / 1554人閱讀

摘要:父組件向子組件傳值文件目錄父組件父組件我是傳往子組件的值子組件使用修飾器去接收接收父組件的值這樣就把值從父組件傳到了子組件子組件向父組件傳值子組件通過方法借助修飾器傳值給父組件子組件我是傳給父組件的值子組件點(diǎn)擊傳值給父組件父組件父

 父組件向子組件傳值 @Input

文件目錄

父組件:

father.template.html

父組件

father.component.ts

import { Component, OnInit } from "@angular/core";

@Component({
    selector: "cmt-father",
    templateUrl: "./father.template.html"
})
export class FatherComponent implements OnInit {
    data: any = "我是傳往子組件的值"
    ngOnInit() {
    }

    ngOnChanges() {
    }

}

子組件:(使用@Input修飾器去接收)

childcomponent.ts

import { Component, OnInit, Input } from "@angular/core";

@Component({
    selector: "cmt-child",
    templateUrl: "./child.template.html"
})
export class ChildComponent implements OnInit {
    @Input() data: any;//接收父組件的值
    ngOnInit() {
        console.log(this.data)
    }

    ngOnChanges() {
        console.log(this.data)
    }

}

這樣就把值從父組件傳到了子組件!

子組件向父組件傳值(子組件通過方法借助修飾器@output傳值給父組件)

子組件

childcomponent.ts

import { Component, OnInit, Input, Output, EventEmitter } from "@angular/core";

@Component({
    selector: "cmt-child",
    templateUrl: "./child.template.html"
})
export class ChildComponent implements OnInit {
    @Output("checked") checkedBack = new EventEmitter();
    id:any ="我是傳給父組件的值"
    ngOnInit() {
    }

    ngOnChanges() {
    }
    checkedCallback() {
        this.checkedBack.emit(this.id);
    }
}

child.template.html.html

子組件

父組件

father.template.html

父組件

father.component.ts

import { Component, OnInit } from "@angular/core";

@Component({
    selector: "cmt-father",
    templateUrl: "./father.template.html"
})
export class FatherComponent implements OnInit {
    ngOnInit() {
    }

    ngOnChanges() {
    }
    
    checkedBack(event) {
        console.log(event)
    }
}

這樣子組件通過點(diǎn)擊就把值傳遞給了父組件!

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://specialneedsforspecialkids.com/yun/100181.html

相關(guān)文章

  • Vue 組件傳值

    摘要:前言作為現(xiàn)在比較火的框架之一,相信您在使用的過程中,也會(huì)遇到組件間傳值的情況,本文將講解幾種組件間傳值的幾種方法,跟著小編一起來學(xué)習(xí)一下吧實(shí)現(xiàn)注意學(xué)習(xí)本文,需要您對(duì)有一定的了解。為了便于講解,以下方法均假設(shè)父組件是,子組件是,兄弟組件是。 前言 Vue 作為現(xiàn)在比較火的框架之一,相信您在使用的過程中,也會(huì)遇到組件間傳值的情況,本文將講解幾種 Vue 組件間傳值的幾種方法,跟著小編一起來...

    VishKozus 評(píng)論0 收藏0
  • 一個(gè)故事講懂vue組件傳值

    摘要:老王用筆在紙上寫了好多內(nèi)容,把紙紙相當(dāng)于,也就是數(shù)據(jù)放進(jìn)了信封信封相當(dāng)于屬性,也就是里,然后給了郵局相當(dāng)于相當(dāng)于一個(gè)中介,快遞員進(jìn)行派送,小明來到郵箱相當(dāng)于,看到里邊有封信相當(dāng)于父組件的值,拿了出來。 講故事前先講代碼 父組件向子組件傳值 父組件數(shù)據(jù)傳遞給子組件可以通過props屬性來實(shí)現(xiàn)父組件: import childComponent from ...

    xi4oh4o 評(píng)論0 收藏0
  • vue組件組件數(shù)據(jù)傳遞

    1、父組件向子組件傳遞數(shù)據(jù) 父組件: 父組件:{{ msg }} import Child from ./Child export default { name: Parent, data () { return { msg: Hello world } } } 子組件: ...

    forrest23 評(píng)論0 收藏0
  • vue組件組件傳值。

    摘要:子,父組件相互傳值。就這樣取到了子組件的值。其他情況也類似的處理。 1、子,父組件相互傳值。 話不多說直接上代碼:父組件向子組件傳值就是通過子組件定義的props子組件: @import ../../../assets/css/jedate.css; import ../../../assets/js/jquery.jedate.min e...

    klivitamJ 評(píng)論0 收藏0
  • 組件傳值及v-model實(shí)現(xiàn)通信

    摘要:子組件也屬于當(dāng)前實(shí)例。監(jiān)聽鉤子函數(shù)的場(chǎng)景使用的不多,但是還是要知道的??梢垣@取到父組件傳遞的除和外的所有自定義屬性。 一. 父組件向子組件傳值 創(chuàng)建parent和child組件,并在parent中注冊(cè)child組件 在父組件調(diào)用子組件標(biāo)簽中添加一個(gè)自定義屬性(msg), im...

    lwx12525 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

最新活動(dòng)
閱讀需要支付1元查看
<