我正在运行 rails 3.2.11。
我正在使用一个 JS 插件(epiceditor),它需要我有几个 js 调用的静态文件。在开发中,我可以轻松地通过资产管道访问文件。
在生产中,我已经将服务静态资产设置为 true,但它仍然没有出现。
config.serve_static_assets = true
文件保存在资产目录中:
- assets
- stylesheets
- epiceditor
在开发中,它可以工作:
在生产中,它不起作用:
正在执行的 JS 代码以插入 css:
function _insertCSSLink(path, context, id) {
id = id || '';
var headID = context.getElementsByTagName("head")[0]
, cssNode = context.createElement('link');
_applyAttrs(cssNode, {
type: 'text/css'
, id: id
, rel: 'stylesheet'
, href: path
, name: path
, media: 'screen'
});
headID.appendChild(cssNode);
}
我在控制台中看到的内容:
Resource interpreted as Stylesheet but transferred with MIME type application/json: "http://www.fulfilled.in/assets/epiceditor/epiceditor.css". application.js:30
(anonymous function)