将数据传递给子组件

时间:2021-04-08 09:51:15

标签: javascript html

我使用 ngx-bootstrap 加载标签。

当我想在选定的依赖项中呈现组件时,它根本不适合我。 校验码:

<tabset class="w-100">
    <tab heading="test"
         id="test" 
         > 
    </tab>  
    <tab heading="Log"
         id="account-departments" >
         <div class="class">  
        </div> 
    </tab> v> 
    </tab> 
</tabset>

我需要使用 (testTab) 函数,因为 (click) 对此无效。

  public testCOmponent = null;
  @ViewChild(directiv) direcive!: direcyive;
  public activeTab: any;

 

如果在 onSelectTab 函数中的 console.log(tab) 中需要 console.log 中的两个函数,我得到了结果。

如果我在 render() 函数中使用 console.log(t) 我总是未定义。

这个例子工作:

我以此为蓝本:

我也做了 adHost 指令不用担心,这不是问题。

我还尝试向他传递 0 或 1 的索引无效。

1 个答案:

答案 0 :(得分:0)

您应该在组件定义中使用映射而不是数组:

class Animal:
  def __init__(self, a, b):
    self.a = a
    self.b = b
  c = 10

    
class Mammal(Animal):
  def __init__(self, a, b, e, f):
    super().__init__(a, b)
    self.e = e
    self.f = f

  g = 11

snake = Animal(3, 4)
cat = Mammal(6, 7, 8, 9)

否则你必须按索引搜索。

Forked Stackblitz