def mkpdf
certificate = Certificate.find params[:certificate_id]
# mke the pdf folder
unless Dir.exist?("pdf")
Dir.mkdir("pdf")
end
end
#4 楼 @jxs471494539 先不谢。mkpdf_path
这类自动生成的 routes helpers 只是返回一个 path 链接,并不可能直接调用 controller 里边的 action。action 的调用过程应该是:路由系统判断请求的 url,结合你在 config/routes.rb 里边的定义,然后将你的请求分发到指定的 action,action 通过 params hash 读取需要的请求参数。建议你得先去读一下计算机网络方面的书籍了。
#2 楼 @jxs471494539 action
定义时是不用包含参数的啊。而且mkpdf_path(certificate)
的用法也错了。先看看书吧。
#6 楼 @mahone3297 你是已经试过了还是只是你的猜测觉得不行?我的试验结果是可以的,scss 文件预编译的时候会自动替换 image-path 指定的文件所对应的预编译的版本。 我的试验代码是:
/* app/assets/stylesheets/home.css.scss */
.cartoon {
width: 600px;
height: 648px;
background: image-url('cartoon.jpg') no-repeat;
}
执行预编译后,在 production 环境下启动 rails server,结果是正常显示背景图的,而且这段 scss 代码变为了:
.cartoon {
width: 600px;
height: 648px;
background: url(/assets/cartoon-2d324851aeef0cc7d25d8615bef2cd88.jpg) no-repeat;
}
注意 文件名的改变。image-url('cartoon.jpg')
部分被换成了url(/assets/cartoon-2d324851aeef0cc7d25d8615bef2cd88.jpg)
。
#3 楼 @leslin123 是要降回老的版本吗?
Gemfile
里边没有指定版本号?建议养成在 Gemfile 里边指定版本号的习惯,比如:
gem 'sass-rails', '~> 3.2.3'
横线或者下划线是跟 gems 命名规范有关的。rubygems 官方文档 (http://guides.rubygems.org/name-your-gem/) 阐述了 gem 命名时如何区分横线以及下划线的使用。
#3 楼 @mahone3297 最好是独立出来吧,html、css 以及 js 各司其职。还有上面说的问题,建议遵从 rails guides 的规范,使用 scss 文件即可:
2.3.2 CSS and Sass When using the asset pipeline, paths to assets must be re-written and sass-rails provides -url > and -path helpers (hyphenated in Sass, underscored in Ruby) for the following asset classes: image, font, video, audio, JavaScript and stylesheet.
image-url("rails.png") becomes url(/assets/rails.png) image-path("rails.png") becomes "/assets/rails.png"
你只要将你的代码改为:
/* xxx.css.scss */
.content {
background: image-url('index_backgroud.png') no-repeat ;
}
即可
留个足迹表示支持!
查看一下环境配置,看看config/environments/production.rb
是不是缺少 mailer 相关的配置
都没有写清楚城市名,还得跑到首页里边去找。
是不是需要改成:
scope '(:locale)' do
get '/kindeditor/images_list'
post '/kindeditor/upload'
end
#36 楼 @allenfantasy 辛苦了!
orig_hello
只是对 hello 方法的拷贝,hello
方法并没有消失,只是在重新定义hello
方法之后,hello
的行为变了。(后者是我的猜测)坐等大牛们正解!
#5 楼 @yeerkunth 不是 #4 楼 @tyaccp_guojian 原帖里边说了,后台工程师眼中,这种前端的细节不算 bug
2⃣0⃣1⃣4⃣新年快乐
不知道你们的分支名一般多长,反正我的太长了,所以挤压到 PR 按钮了。。。这算 bug 吧
语法好亲切。
首先,我没看过敏捷开发这本书,深深自觉挫爆了!
其次,至于为什么@line_item
没有保存成功,可能你就要检查一下 log 输出或者调试一下@line_item.errors
,另外检查一下 model 文件里边是不是定义了validatations
,但是这些验证都没通过?
还有LineItem
跟Number
的关系是不是反了?
最后,你都说高手了,还@我,让我压力好大!!!待会我被真的高手喷了怎么办?
有没有写入 crontab 啊?你执行crontab -e
查看是否写入成功
先感谢你的支持哈。不需要特意再去取消的,我们知道了就好。请问你姓卢对吧?