如何在页面内的 head 标签中添加资源?

how to add a ressource in a headTag within xpage?

如何将 "polyfill.min.js?features=Intl.~locale.fr" 添加到 xp:headTag?

我尝试了这段代码,但出现了这个错误 Failed to load resource: the server responded with a status of 400 (Bad Request)

这是我使用的代码:

<xp:headTag tagName="script">
    <xp:this.attributes>
        <xp:parameter name="type" value="text/javascript" />
        <xp:parameter name="src" value="Dx/polyfill.min.js?features=Intl.~locale.fr" />
    </xp:this.attributes>
</xp:headTag>

Domino 不理解第一个查询参数 "features" 所以添加 Domino 理解的 open 参数,然后添加 features 参数:

<xp:headTag tagName="script">
    <xp:this.attributes>
        <xp:parameter name="type" value="text/javascript" />
        <xp:parameter name="src" value="Dx/polyfill.min.js?open&features=Intl.~locale.fr" />
    </xp:this.attributes>
</xp:headTag>