在 MEL 中,我如何循环通过动态生成的答案键来检查它们是否被选中?我分享了一个示例代码块。我想遍历答案键。这里答案键是动态生成的。
<question title="Preferrable Colors" type="4" key="#1">
<answer nextQuestionKey="END" key=**"#1_1"** position="0">
<text>Pink</text>
</answer>
<answer nextQuestionKey="END" key=**"#1_2"** position="1">
<text>Red</text>
</answer>
<answer nextQuestionKey="END" key=**"#1_3"** position="2">
<text>Violet</text>
</answer>
.......
<answer nextQuestionKey="END" key=**"#1_10"** position="10">
<text>Cyan</text>
</answer>
<text>Select the colors you prefer </text>
</question>
请在这里建议我最好的方法。
谢谢