在主题中添加 Javascript 资源
css文件正确添加到Xpage上,但是当我添加JS资源时它没有添加,我不知道为什么?这就是我写的:
<resource>
<content-type>text/javascript</content-type>
<href>addThis.js</href>
</resource>
提前 Tnx
The css files are added on the Xpage correctly, but when I add JS resource it's not added, and I have no idea why? This is what i write:
<resource>
<content-type>text/javascript</content-type>
<href>addThis.js</href>
</resource>
Tnx in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您的内容类型错误。要通过主题添加客户端 Javascript 库,您需要使用 application/x-javascript:
Your content-type is wrong. To add a clientside Javascript library through a theme you need to use application/x-javascript:
如果您正在谈论客户端 javascript,您应该使用以下标记:
对于服务器端脚本使用
If you are talking about CLIENT side javascript you should use the following markup:
For serverside script use
根据 Mastering Xpages,您应该使用内容类型“text/x-javascript”。你尝试过吗?
According to Mastering Xpages you should use content-type "text/x-javascript". Have you tried that?