我搜索了一个选项,在父节点的子组件中包含html标签,比如
父组件:
<child><button>+</button></child>
子组件:
<form>
<input />
<!-- insert button here -->
</form>
我知道反应是可能的,但我怎么能在Angular 2中做到?
答案 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。