There's over 25 questions
listed in JSON.
(JSON中列出了25个以上的questions
。)
(我只想在用户越过25个问题中的第5个问题时显示div。)
How can I go about this?(我该怎么办?)
Here's where I'm stuck:
(这是我被困的地方:)
<div *ngIf="questions.length > 5">{{(questionIndex+1)}}/{{(questions.length)}}</div>
ask by Elaine Byene translate from so