我正在使用Angular 7和ngrx / store,我有一些逻辑非常复杂的组件。它在组件级别上注入不同的服务:from lxml import objectify
import pandas as pd
xml = objectify.parse('file.xml')
root = xml.getroot()
data = []
for i in range(len(root.getchildren())):
data.append([child.text for child in root.getchildren()[i].getchildren()])
df = pd.DataFrame(data)
df.columns = ['item1', 'item2', 'item3', 'item4', 'item5', 'item6', 'item7']
df.head()
item1 item2 item3 item4 item5 item6 item7
0 None None blue green yellow red white
1 None None blue green yellow red white
2 None None blue green yellow red white
3 None None blue green yellow red white
4 None None blue green yellow red white
。另外,我有一个动作providers: [Service1, Service2]
,实际上,我想实现以下目标:
UpdateComponentPresentation
那么有可能以某种方式进入组件服务的效果实例吗?必须在组件级别注入服务,这一点很重要,因为我可以在页面上同时拥有多个组件。在这些服务中,我拥有许多与当前组件实例相关的内部数据。