如何将* ngFor数据读取到组件中

时间:2019-07-03 13:58:00

标签: angular

我想将* ngFor数据读取到组件中。 我在* ngFor(* cdkVirtualFor)中使用管道,但无法将此管道包含在组件中。 另外,数组很复杂,我只需要从模板到组件阅读* ngFor数组。 我的代码:

<div
    *cdkVirtualFor="let item of (items | pipeOne : pipeOneData | pipeTwo : pipeTwoData1 : pipeTwoData2 | pipethree | pipefour)"> 
</div>

我需要将此数据放入组件(.ts)文件中。

感谢您

1 个答案:

答案 0 :(得分:2)

将所有管道导入组件并在组件中应用管道-

from bs4 import BeautifulSoup
data='''<Dressing1>Italian</Dressing1>'''
salad = BeautifulSoup(data, 'xml')
dressing = salad.find('Dressing')
if dressing:
    print(dressing.text)