在主题中添加Javascript资源

gki*_*idd 1 lotus lotus-domino xpages

正确地在Xpage上添加了css文件,但是当我添加JS资源时,它没有被添加,我不明白为什么?这就是我写的:

<resource>
        <content-type>text/javascript</content-type>
        <href>addThis.js</href>
</resource>
Run Code Online (Sandbox Code Playgroud)

Tnx提前

Mar*_*ink 8

您的内容类型错误.要通过主题添加客户端Javascript库,您需要使用application/x-javascript:

<resource>
     <content-type>application/x-javascript</content-type>
     <href>addThis.js</href>
</resource>
Run Code Online (Sandbox Code Playgroud)

  • Thimo建议使用text/x-javascript,但这是不正确的,不起作用.它应该是application/x-javascript.这也是Mastering XPages的书所说的. (2认同)