cakePHP 中的相对 URL
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信 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.