我希望你能帮我解决一个小问题。
我在 ror 控制器中有一些代码:
def create
@email = Email.new(params[:email])
respond_to do |format|
if @email.save
format.html { redirect_to root_path }
format.json { render json: @email, status: :created, location: @email }
else
format.html { render action: "new" }
format.json { render json: @email.errors, status: :unprocessable_entity }
end
end
end
如果保存了电子邮件,
if @email.save
我希望 div 显示在 HTML 文件中
<div id="notice">OK</div>
用这个 javascript
document.getElementById("notice").style.display = 'block';
但我不知道我应该把js文件放在哪里以及我应该如何从控制器调用它。
谢谢。