has_attached_file :photo,
:styles => {
:thumb => "100x100#" },
:convert_options => {
:thumb => "-quality 75 -strip" }
我遇到上述代码时遇到问题。 它说这是一个错误,但我认为这只是胡说八道...... 我真的不知道如何解决这个问题...... 提前致谢! 是的,我希望登录使用数组,我不需要任何数据库。
答案 0 :(得分:0)
在最后一行之前,您有;
个无效的字符。
$tools = array(
'xtr3m3' => array(
'root',
'ceo',
'test123'
);
);
应该是
$tools = array(
'xtr3m3' => array(
'root',
'ceo',
'test123'
)
);