Lightning Component 问题汇总 - 07.12

1.子组件被引用时,父组件如果以某一变量为子组件属性赋值,子组件需要根据赋值变换进而变化需要使用 name=“change” 的 handler

<!--parent-->
<aura:component>
    <aura:attribute name="a" type="String"/>
    <c:child childAttr="{!v.a}"/>
</aura:component>
<!--child-->
<aura:component>
    <aura:attribute name="childAttr" type="String"/>
    <aura:handler name="change" value="{!v.childAttr}" action="{!c.showAttr}"/>
    <!--Do not use name="init"-->
</aura:component>
<script>
    // child controller
    ({
        showAttr:function (cmp, event, helper) {
            console.log(cmp.get('v.childAttr'));// every time you changed childAttr, it shows.
        }
    })
</script>

2.当lightning中使用input标签type=“date”时,若要指定默认值需要默认固定格式的字符串,如:

<aura:component>
    <aura:attribute name="today" type="Date"/>
    <aura:handler action="{!c.init}" value="{!this}" name="init"/>
    <lightning:input label="Date" name="date" value="{!v.today}"/> <!--show today date-->
    <lightning:input label="Date" name="date" value="{!'2018-8-15'}"/>
</aura:component>
<script>
    // controller
    ({
        init:function (cmp, event, helper) {
            var today = new Date((new Date().getTime()));
            var monthDigit = today.getMonth() + 1;
            if (monthDigit <= 9) {
                monthDigit = '0' + monthDigit;
            }
            component.set('v.deadLine', today.getFullYear() + "-" + monthDigit + "-" + today.getDate());
        }
    })
</script>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值