アクションがあります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"
しかし、これはうまくいきません!
だから私は、ステーションからjsを含める方法を知りたいです。