CakePHP 尝试通过 AssetsController 加载 webroot/assets 中的 JS 文件

发布于 2024-10-10 16:00:55 字数 417 浏览 4 评论 0原文

我在 webroot/assets 中有一些 javascript 和其他文件。我想将它们保留在那里,而不是放在 webroot/js 中,原因是我可以在必要时进行讨论,但为了简洁起见,我不会在这里讨论。

因此 home.ctp 链接到 webroot/assets/js 中的几个脚本。但是,它尝试通过 AssetsController 路由请求,而 AssetsController 并不存在。我可以在 Chrome JS 调试器中看到 CakePHP 正在打印缺少控制器错误页面的 HTML、布局和所有内容。

此外,我收到错误“资源解释为脚本,但使用 MIME 类型 text/html 进行传输。”

我的本地计算机上有相同的设置工作正常 - home.ctp 按预期找到 JS 文件。问题出在我的远程服务器上。

非常感谢帮助!

谢谢

I have some javascript and other files in webroot/assets. I want to keep them there rather than in webroot/js for reasons I can go into if necessary but won't here for brevity.

So home.ctp links to a couple of scripts in webroot/assets/js. However, it tries to route the requests through AssetsController, which doesn't exist. I can see in the Chrome JS debugger that CakePHP is printing the HTML, layout and all, for the missing controller error page.

Additionally, I'm getting the error "Resource interpreted as script but transferred with MIME type text/html."

I have this same set-up working fine on my local machine - home.ctp finds the JS files as expected. The problem is on my remote server.

Help much appreciated!

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

悲喜皆因你 2024-10-17 16:00:55

指定绝对路径:http://you.com/assets/js/yours.js

普通标记:

<script type="text/javascript" src="http://you.com/assets/js/yours.js"></script>

或者 CakePHP 中的 HTML Helper:

<?php echo $this->Html->script('/assets/js/yours.js'); ?>

Specify an absolute path: http://you.com/assets/js/yours.js.

Plain markup:

<script type="text/javascript" src="http://you.com/assets/js/yours.js"></script>

Or the HTML Helper in CakePHP:

<?php echo $this->Html->script('/assets/js/yours.js'); ?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文