Angular 2:嵌套子组件灵活

时间:2017-05-26 13:43:35

标签: angular

我搜索了一个选项,在父节点的子组件中包含html标签,比如

父组件:

<child><button>+</button></child>

子组件:

<form>
  <input />
  <!-- insert button here -->
</form>

我知道反应是可能的,但我怎么能在Angular 2中做到?

1 个答案:

答案 0 :(得分:0)

查看我制作的Plunker的工作演示:

{{HERE}}

我只是使用public @ResponseBody Map<String, String> tst(HttpServletResponse response) { ... return Collections.singletonMap("ERROR": e.getMessage()); 装饰器将这个简单的HTML @Input作为字符串发送,然后使用带有属性绑定的<b>This bold html text is coming from the parent</b>属性渲染html。

以下是来自Plunker的快照如何呈现粗体文本: enter image description here