cakePHP 中的相对 URL

发布于 2024-09-08 09:41:44 字数 603 浏览 5 评论 0原文

我正在使用 cakePHP 1.26 和 TinyMCE v3.38。
TinyMSC的.js文件存放在这个目录下:
http://www.mysite/js/tiny_mce/tiny_mce.js

在用户可以发布新主题的页面中,
该页面的URL是这样的:
http://www.mysite/user/newpost

现在我需要将 javascript 添加到这个页面,我已经尝试过这些:
echo $javascript->link('/js/tiny_mce/tiny_mce.js');
echo $javascript->link('js/tiny_mce/tiny_mce.js');
echo $javascript->link('../js/tiny_mce/tiny_mce.js');
但无法访问tiny_mce.js。

I am using cakePHP 1.26 and TinyMCE v3.38.
The .js file of the TinyMSC is stored under this directory:
http://www.mysite/js/tiny_mce/tiny_mce.js

In the page where the users can post new topic,
the URL of this page is like this:
http://www.mysite/user/newpost

Now I need to add the javascript to this page, and I have tried these:
echo $javascript->link('/js/tiny_mce/tiny_mce.js');
echo $javascript->link('js/tiny_mce/tiny_mce.js');
echo $javascript->link('../js/tiny_mce/tiny_mce.js');
But the tiny_mce.js can not be reached.

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

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

发布评论

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

评论(1

烟酒忠诚 2024-09-15 09:41:44

我相信 Cake 已经通过使用 $javascript->link() 结构知道你的 javascript 位于 /js/ 中 - 所以尝试

echo $javascript->link('tiny_mce/tiny_mce.js');

看看你是否能有所收获。

I believe that Cake already knows that your javascript is in /js/ through using the $javascript->link() structure in the first place - so try

echo $javascript->link('tiny_mce/tiny_mce.js');

and see if you get anywhere.

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