def tag_autocomplete
@tags = Tag.find_by_sql("SELECT tag_name as id,tag_name as label,tag_name as value FROM tags ")
render :json => @tags.to_json
end
jsonが機能しないレンダリング次のエラーが発生します
ArgumentError (wrong number of arguments (0 for 2)):
/app/controllers/tags_controller.rb:32:in `to_json'
私はルビー1.8.6とレール2.3.5を使用しています
前もって感謝します