我使用 mongodb 作为我的数据库和驱动程序 mongoid。
我的一个模型Bill
有一个字段是 local_time,我在视图中使用了 datetime_select:
.ym-fbox-select
= f.label :local_time, "Time"
= f.datetime_select :local_time
create
动作没问题。但update
行动不是。错误是这样的:
(eval):1: syntax error, unexpected tINTEGER, expecting ')'
def local_time(1i)=(value)
并且update
是:
def update
@bill = Bill.find(params[:id])
respond_to do |format|
if @bill.update_attributes(params[:bill])
所以我想知道如何更新local_time
字段?