在主题中添加 Javascript 资源

发布于 2025-01-06 21:04:02 字数 241 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

少女七分熟 2025-01-13 21:04:02

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

<resource>
     <content-type>application/x-javascript</content-type>
     <href>addThis.js</href>
</resource>

Your content-type is wrong. To add a clientside Javascript library through a theme you need to use application/x-javascript:

<resource>
     <content-type>application/x-javascript</content-type>
     <href>addThis.js</href>
</resource>
深海夜未眠 2025-01-13 21:04:02

如果您正在谈论客户端 javascript,您应该使用以下标记:

<theme extends="oneuiv2.1">
  <script target="xsp" src="/yourscript.js" clientSide="true" type="text/javascript"/>
</theme>

对于服务器端脚本使用

<theme extends="oneuiv2.1">
<script target="xsp" src="*/yourscript.jss" clientSide="false" type="text/javascript"/>
</theme>

If you are talking about CLIENT side javascript you should use the following markup:

<theme extends="oneuiv2.1">
  <script target="xsp" src="/yourscript.js" clientSide="true" type="text/javascript"/>
</theme>

For serverside script use

<theme extends="oneuiv2.1">
<script target="xsp" src="*/yourscript.jss" clientSide="false" type="text/javascript"/>
</theme>
那小子欠揍 2025-01-13 21:04:02

根据 Mastering Xpages,您应该使用内容类型“text/x-javascript”。你尝试过吗?

According to Mastering Xpages you should use content-type "text/x-javascript". Have you tried that?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文