如何在xpage中的headTag中添加资源?

时间:2018-09-07 14:33:01

标签: javascript devexpress xpages lotus-notes

如何将“ 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>

1 个答案:

答案 0 :(得分:1)

Domino无法理解第一个查询参数“功能”,因此添加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>