下面我有控制器操作,它将获得正确的广告系列,以及广告系列与campaign_locations表中其位置的关联关系:
def edit
@campaign = Campaign.find(params[:id])
@campaign_locations = CampaignLocation.where(campaign_id: :id).pluck(:location_id)
end
和campaign_location表的布局为:
我需要做的是将对象@campaign_location
中的结果数据传递到jQuery / coffeecscript文件campaigns.js.coffee
,以便在campaign / edit /:id页面加载之前进行预处理,但是已经看不见了关于如何使用jQuery对象启用此类操作。
如何将对象直接从控制器传递到正确的页面jQuery / CoffeeScript?