in controller
class V1::ItemsController < ApplicationController
def index
images = Image.all
render json: {status: 'SUCCESS', message:'Loaded images',
data:images},status: :ok
items = Item.all
render json: {status: 'SUCCESS', message:'Loaded items',
data:items},status: :ok
end
end
in model
item.rb
has_many :images, dependent: :destroy
image.rb
belongs_to :item
when i am going to render json data i am getting error like this
Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like "redirect_to(...) and return".
pls need help.........