我想将* ngFor数据读取到组件中。 我在* ngFor(* cdkVirtualFor)中使用管道,但无法将此管道包含在组件中。 另外,数组很复杂,我只需要从模板到组件阅读* ngFor数组。 我的代码:
<div
*cdkVirtualFor="let item of (items | pipeOne : pipeOneData | pipeTwo : pipeTwoData1 : pipeTwoData2 | pipethree | pipefour)">
</div>
我需要将此数据放入组件(.ts)文件中。
感谢您
答案 0 :(得分:2)
将所有管道导入组件并在组件中应用管道-
from bs4 import BeautifulSoup
data='''<Dressing1>Italian</Dressing1>'''
salad = BeautifulSoup(data, 'xml')
dressing = salad.find('Dressing')
if dressing:
print(dressing.text)