0

即使我检查并提交,也不会触发交易:(
为什么会这样??body其他一切都很好提交。
即使我检查并提交,它也不会检测并运行交易......任何人有什么想法吗?

控制器

if params[:comment][:call]
    transaction.....
end

查看表单(使用 ajax 远程)

<%=form_for(([@community, @comment]), :remote => true, :class => 'form' ) do |f| %>
    <%= f.check_box :call, :label => 'call' %> call
        <div class="form-actions">
            <div class="input-append">
                <%= f.text_field :body, :id => "input", :class => "box" %>  
            <button type="submit" class="btn">submit</button>
        </div>
    </div>
<% end %>

评论模型

attr_accessible :icon, :call
....
def call
    @call ||= "0"
end

def call=(value)
    @call = value
end
4

0 回答 0