这是结构,我想在 fancybox 文件夹中导入 javascript 和 css。
所以我添加了这样的代码,
<link rel="stylesheet" type="text/css" media="all" href="/app/assets/fancybox/jquery.fancybox.css">
<script type="text/javascript" src="/app/assets/fancybox/jquery.fancybox.js?v=2.0.6"></script>
它会抛出这些错误,
Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost:3000/app/assets/fancybox/jquery.fancybox.css
Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost:3000/app/assets/fancybox/jquery.fancybox.js?v=2.0.6
我必须使用rails代码吗?
像这样的?
<%= javascript_include_tag "application" %>
我不习惯 Rails 代码,所以我使用了原始的 html 代码。我认为这是问题所在,但我不确定如何在此处添加路径。