0

我有以下 fetchxml 查询,它在 Advanced Find / FetchXML Builder 中运行良好。但是,在流动模板中,相同的查询没有返回任何内容。

{% fetchxml feed %}
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
  <entity name="contact">
    <attribute name="fullname" />
    <attribute name="telephone1" />
    <attribute name="contactid" />
    <order attribute="fullname" descending="false" />
  </entity>
</fetch>
{% endfetchxml %}
{
    "results":[
        {% for item in feed.results.entities %}
        {
            "Id":"{{ item.ebecs_vatgroupid }}",
            "Name":"{{ item.ebecs_name }}"
        }{% unless forloop.last %},{% endunless %}
        {% endfor %}
    ]
}

我是系统管理员,拥有适当的实体权限以及与我的用户关联的网络角色。任何人都可以在这方面提供帮助吗?

更新 这是浏览器中的输出。它按原样返回液体标签。 在此处输入图像描述

4

0 回答 0