Rails ActiveRecord对象查找与动态生成的内容部分

时间:2015-07-24 19:08:06

标签: ruby-on-rails activerecord syntax

在我的应用中,用户有list和list_items(list_items将他们添加的产品链接到相应的列表)。我有一个产品搜索模式,它返回每个带有product_id属性的产品列表。我想有条件地显示一个按钮(ADD或ADDED),具体取决于用户是否已在其列表中包含该产品。

问题是使用通过ActiveRecord对象查找从搜索传入的{raw-product_id}变量。如果我手动输入一个整数,它工作正常,但使用的变量看起来像是一个字符串,即使附加了to_i,使用时也不起作用:- if current_user.list_items.where(product_id: '{raw-product_id}'.to_i).exists?相关的代码行靠近底部。

代码:

            -# = form_tag main_app.products_path(), method: :post do
            = form_tag main_app.list_items_path, data: { passthru: current_user.nil?, remote: true } do |f|
                = hidden_field_tag :success, 'back'
                = hidden_field_tag :list_id, args[:list].try(:id) || '0'
                .product_picker_inner
                    .product_picker_body

                        .product_picker_details
                            .product_picker_details_default
                                = hidden_field_tag :product_id, '{raw-product_id}'
                                = hidden_field_tag :added_from, 'search'
                                %h4.text-center
                                    {escaped-title}
                                .text-center.product_picker_category
                                    %span
                                        {escaped-category}
                                .product_picker_content
                                    .row
                                        .col-xs-12.col-md-6.product_picker_avatar6
                                            %img.img.img-responsive.center-block{ src: '#{raw-avatar}' }
                                            -# .rectangle-avatar.contain-image{ style: 'background-image: url("{encoded-avatar}")' }
                                        .col-xs-12.col-md-6.product_picker_description
                                            {escaped-description}
                                        .col-xs-12.col-md-6
                                            .text-center{ style: 'margin:1em 2em 0.3em 0' }
                                                price:
                                                %b
                                                    {raw-price_formatted}
                                    .row{ style: 'padding: 1em 0 0 0;' }
                                        .col-xs-12
                                            .fancy-span{ style: 'font-size: 0.8em' }
                                                %span Tell us about this product
                                            = text_area_tag :comment, '', class: 'form-control'
                                .text-center.product_picker_controlls
                                    - if current_user.list_items.where(product_id: '{raw-product_id}'.to_i).exists?
                                        = button_tag 'ADDED', type: 'submit', class: 'btn btn-danger btn-lg t03e', id: 'product-{raw-product_id}'
                                        -# %a.btn.btn-primary.btn-lg.t03e{ href: "#{products_path( list_id: args[:list].try(:id) || '0', success: 'back' )}&u={raw-id}", data: { method: :post } }
                                            ADDED
                                    - else
                                        = button_tag 'ADD', type: 'submit', class: 'btn btn-primary btn-lg t03e', id: 'product-{raw-product_id}'
                                        -# %a.btn.btn-primary.btn-lg.t03e{ href: "#{products_path( list_id: args[:list].try(:id) || '0', success: 'back' )}&u={raw-id}", data: { method: :post } }
                                            ADD
                        .product_picker_loading_overlay
                            %div{ style: 'position: absolute;top: 50%;left: 0;line-height: 1.1em;right: 0;text-align: center;font-size: 40px;margin: -20px 0 0 0;' }
                                %i.fa.fa-circle-o-notch.fa-spin
            .text-center{ style: '' }
                %a{ href: '#', 'data-dismiss' => 'modal' }
                    CLOSE

1 个答案:

答案 0 :(得分:0)

在仔细检查代码时,我发现有一个javascript文件用适当的值替换了{raw-attribute}的所有实例,因此这个DOM操作没有到达ERB本身。我的解决方案是将按钮文本和按钮类直接添加到JSON本身,然后在HAML中添加这些属性。

jbuilder文件中的新json:

json.in_list @list.list_items.where(product_id: product[:product_retailer].try(:product_id)).exists? ? 'ADDED' : 'ADD'
json.button_class @list.list_items.where(product_id: product[:product_retailer].try(:product_id)).exists? ? 'btn-danger' : 'btn-primary'

new haml:

.text-center.product_picker_controlls
    = button_tag '{raw-in_list}', type: 'submit', class: 'btn btn-lg t03e {raw-button_class}', id: 'product-{raw-product_id}'
    -# %a.btn.btn-primary.btn-lg.t03e{ href: "#{products_path( list_id: args[:list].try(:id) || '0', success: 'back' )}&u={raw-id}", data: { method: :post } }
        '{raw-in_list}'