CakePHP 尝试通过 AssetsController 加载 webroot/assets 中的 JS 文件
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
指定绝对路径:
http://you.com/assets/js/yours.js
。普通标记:
或者 CakePHP 中的 HTML Helper:
Specify an absolute path:
http://you.com/assets/js/yours.js
.Plain markup:
Or the HTML Helper in CakePHP: