gpt4 book ai didi

json - 如何在gsp每个标签中遍历json?

转载 作者:行者123 更新时间:2023-12-02 14:58:29 25 4
gpt4 key购买 nike

我有以下代码:

<g:each var="question" in="${confHolder.config.faq}">
<h1>${question.question}</h1>
<h1>${question.answer}</h1>
</g:each>

在我的conf文件中,我有以下json:
faq = [{"question":"What is this", "answer":"This thing"}, {"question":"What is this", "answer":"This thing"}];

我知道我正在正确读取文件,因为我可以这样做:
<script type="text/javascript">
var faq = ${confHolder.config.faq}
for(var ii=0; ii<faq.length; ii++)
alert(faq[0].question);
</script>

它将提醒我的问题。

我如何遍历 each标记中的json并在 <h1></h1>标记中打印出问题和答案?

最佳答案

您需要将json解析为 map 列表:

这应该适用于grails 1.3.7

<g:each var="question" in="${grails.converters.JSON.parse( confHolder.config.faq )}">

关于json - 如何在gsp每个标签中遍历json?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21891904/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com