2017-02-04 15 views
3

私は反応テストにairbnbの酵素ライブラリを使用しています。子ノードのテキストを除いて、現在のノードのテキストのみを取得します。現在のノードのテキストのみを取得する

const component = <div>hello<span>there</span></div> 

は私が行う場合:

shallow(component).find('div').text() //hellothere 

は私がない場合:

shallow(component).find('span').text() //there 

は、どのように私はちょうどhelloを得るのですか?

答えて

0

あなたは.childAt()

shallow(component).find('div').childAt(0) // hello 

.childAt()を使用することができますが、インデックスの子を返します

を指定
関連する問題