1

我正在我的 Web 应用程序中创建一个 tagCloud。我有一个呈现 2 个列表的方法:

public static void tagCloud(){
        List<Topic> topics = Topic.find("order by topicName asc").fetch();
        List<Tutorial> tutorials = Tutorial.find("order by id asc").fetch();
        List<Integer> topicCount = new ArrayList<Integer>();
        for(int i = 0; i < topics.size(); i++){
            int z = 0;
            for(int j = 0; j < tutorials.size(); j++){
                if (tutorials.get(j).getTopic().equals(topics.get(i))){
                    z++;
                    topicCount.add(z);

                }
            }
        }
        render (topics, topicCount);
    }

我想在与此类似的行中将这 2 个列表用于 tagCloud:

<a href="/Topics/topicView?topicId=${topicList.id}" rel="8">${topicList.topicName.raw()}</a>

我想使用 topicCount 列表中的索引作为“rel”(单词的大小)和主题作为要显示的元素本身,我该怎么做?

4

1 回答 1

1

我不会有两个列表,而是将每个主题及其计数存储在一个对象中(我们称之为TopicWithCount),并使用单个List<TopicWithCount>.

于 2012-05-19T11:37:43.283 回答