无法在Angular中使用CSS创建关闭按钮

时间:2018-08-03 15:26:50

标签: angular6

请检查以下代码:

https://stackblitz.com/edit/angular-nuyfcq

我希望在选择文件时出现一个小的缩略图,并带有一个X符号。我只能使用HTML,CSS和JS(请参阅https://codepen.io/manuchadha/pen/PBKYBJ)来工作,但是我无法使其在Angular中工作。

我的错误在哪里?

1 个答案:

答案 0 :(得分:0)

受答案self的启发,如果我将所有类更改为Child2格式,即(注释部分是我以前使用的内容。我从类中更改(例如{{ 1}}的选择器,方法是为Parentclass Parent(object): # makes it a new-style class in 2.x as well as 3.x def foo(self): print("foo of class Parent: instance " + self.__class__.__name__) def __init__(self): self.d = {"foo": self.__class__.foo} def bar(self): self.d['foo'](self) # Gets __func__ if it's an unbound method (2.x), leaves it alone if not (3.x) self.d['foo'] = getattr(Child1.foo, '__func__', Child1.foo) self.d['foo'](self) class Child1(Parent): def foo(self): print("foo of class Child1: instance " + self.__class__.__name__) class Child2(Parent): pass Child2().bar() )赋予ID

https://stackoverflow.com/questions/36265026/angular-2-innerhtml-styling