0
親テンプレート角度2+ ui-router 1+では、どのようにパラメータを子ビューに渡すのですか?
<ui-view [inputValue]="something"></ui-view>
例の子コンポーネント
@Component({
selector: 'child',
template: '...'
})
export class ChildComponent {
@Input() inputValue;
}
はUIViewのディレクティブは、入力パラメータ、それは(例えばinputValueで)について知っていないので、どのように私は「何か」を得ることができることはできません。変数を子のinputValueに変更しますか?