我试着用:
.widget::before{
background:red;
height:20px;
width:100%;
content: ""; <---- if this is removed, then block is not visible at all
}
但是没有content: "";,伪块就完全不显示了。伪类应该总是包括content参数吗?
在rails项目中,我有一个控制器和两个模型。我希望从angularjs向rails服务器发送1个请求,并获取2个json数组作为响应,1.第一个模型。2. seccond模型。
现在我使用下面的代码,并且只得到2个数组中的1个:
Rails控制器:tables_controller.rb
class Api::V1::TablesController < Api::V1::BaseController
def index
@table = Table.all
@mostagheltype = Mostagheltype.all
//I can just se