0

我正在尝试在我的页面上显示有关知识文章的信息。我想要显示的一件事是查看次数最多的文章统计信息。

我有一个如下所示的 Visualforce Apex 组件:

<apex:component controller="Component_Query" access="global">
  <apex:attribute name="QueryString" type="String" required="true" access="global" assignTo="{!queryString}"
    description="A valid SOQL query in string form." />

    <apex:variable value="{!results}" var="results"/>
    <apex:componentBody />
</apex:component>

我有一个如下所示的 Visualforce 页面:

<apex:page >
    <table id="articles">
        <knowledge:articleList articleVar="article" sortBy="mostViewed" pageSize="5">
        <tr>
            <td>{!article.articlenumber}</td>
            <td><a target="_parent" href="{!URLFOR($Action.KnowledgeArticle.View, article.id)}">{!article.title}</a></td>
            <td>{!article.articletypelabel}</td>
            <td>{!article.lastpublisheddate}</td>
            <td>
                <c:Query_component queryString="SELECT NormalizedScore FROM KnowledgeArticleViewStat WHERE ParentId = '{!article.id}'">
                <apex:repeat value="{!results}" var="result">
                </apex:repeat>
                </c:Query_component>
            </td>
        </tr>
        </knowledge:articleList>
    </table>
</apex:page>

我将 Visualforce 页面放入选项卡中。当我查看该页面时,除了有关查看次数最多的统计信息的信息外,所有有关知识文章的信息都会显示出来。我如何看到这个统计数据?

4

2 回答 2

1

您忘记为视图统计添加输出。您必须<apex:outputText>在重复中添加一个标签以显示该值。

<apex:outputText>{!result.NormalizedScore}</apex:outputText>

于 2012-06-20T01:51:44.367 回答
0

这就是我最终在 Visualforce 页面中使用的内容:

    <c:Query_component queryString="SELECT NormalizedScore, Id, ParentId FROM KnowledgeArticleViewStat WHERE Channel='Csp'">
        <apex:variable value="{!results[articleid]}" var="result"/>
            <span class="inlinesparkline">100, {!result}</span>
    </c:Query_component>
于 2012-07-09T18:19:28.627 回答