我必须使用jsonObject
c:foreach
<c:forEach var="lecture" items="${lectureList}">
// .. the place where i should parse jsonObject ${lecture.lastjson}
</c:forEach>
下面是讲座对象
public class Lecture {
String lid;
String lname;
String lastjson; // json object(String writer, String title...) }
我已经尝试过这样的
<c:out value="${lecture.lastjson.writer}"/>
但它不起作用.. 我可以用来处理这个问题的任何提示吗?