我有一个动态表单,带有一组单选按钮,它们的表单控件名称为“ category”。
基于所选类别,我应该显示类别图片徽标
如何使用* ngIf来检查每次迭代中的category值?
query MyQuery {
allContent(filter: {activityMeta: {contentType: {eq: "iframe-game"}}}) {
nodes {
name
activityMeta {
contentType
contentLink
inScene
backgroundImages {
path
}
}
type
link
description
content {
score
gameOverTitle
gameOverProgress
}
}
}
}
我已经尝试了上面的代码,但对我来说不起作用。