我有一个动作common/location
#encoding: utf-8
class CommonController < ApplicationController
def location
@locations=Location.select(['`key`','name','parent'])
render json: @locations
end
end
我想通过以下方式包含这个js:
=javascript_include_tag "common/location"
但这不起作用!
所以我想知道如何从一个 ation 中包含一个 js。