牛逼
前端和后端 title 写反了
使用 Jquey serialize, url 里加传递参数
楼主挺厉害的
哈哈,同求
改进了不少
其实不管学哪个,都是靠实践,多思考,多练习
看起来挺赞的,@saberma 比较关心的是如果面试进去主要参与哪些项目的开发?
欢迎@rei加入大疆!
#117 楼 @andor_chen 谢谢你
#114 楼 @andor_chen 我发过了呀
@andor_chen 书没收到啊
好赞。saberma
@nightire 楼主写的很棒,我也有过类似的经历,深有同感,支持你。
#103 楼 @andor_chen 已发邮件,谢谢
分母+1
重要的是坚持多练吧
赞,回头有时间买本看看
第一个赞啊,妹子都好漂亮啊 @saberma
听过 saberma 的分享,人很不错
#1 楼 @yangman_wenzhu 我知道了,我的代码是通过 ajax 提交的,然后可能有的专业用户 在控制台里修改我的 js 代码,然后自己去测试提交,从而导致这种问题
In Model:
class Product < ActiveRecord::Base
has_many :line_items
def income
self.line_items.sum(:price)
end
def cost
self.line_items.sum(:cost)
end
def profit
self.income - self.cost
end
end
Then in Controller:
def show
@products = Product.all
end
And in View
<% @products.each do |product| %>
Product Name: <%= product.name %>
Product Income: <%= product.income %>
Product Cost: <%= product.cost %>
Product Profit: <%= product.profit %>
<% end %>