本文介绍了require_self 是什么意思?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在 rails3.1 application.css 中我们可以看到

In rails3.1 application.css we could see

/*
 *= require_self
 *= require_tree .
*/

我知道 require_tree . 只是告诉系统将样式表文件夹中的所有内容捆绑到一个文件中.

I know that require_tree . is just telling the system to bundle together everything from the stylesheets folder into a single file.

但是require_self 说明了什么?

推荐答案

来自 http://guides.rubyonrails.org/asset_pipeline.html:

/* ...
*= require_self
*= require_tree .
*/

"在这个例子中使用了 require_self.这会将包含在文件中的 CSS(如果有的话)放在这个文件中任何其他 CSS 的顶部,除非在另一个 require 指令之后指定了 require_self."

"In this example require_self is used. This will put the CSS contained within the file (if any) at the top of any other CSS in this file unless require_self is specified after another require directive."

这篇关于require_self 是什么意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 09:22