如何使用 Rails 3.0.3 和 Ruby 1.9.2 将 javascript 放入控制器中

发布于 2024-10-18 22:31:51 字数 365 浏览 6 评论 0原文

有人可以告诉我如何将 javascript 放入控制器中吗?我在会话控制器中尝试了类似的操作:

def sign_in
  if user.nil?
      @title = "Sign in"
      render :js => "alert('Invalid email/password combination.');"
  else
      sign_in user
      redirect_back_or user      
  end
end

当我尝试这样做时,页面以文本格式显示:alert('无效的电子邮件/密码组合。');

我不想使用 Flash 消息。我真的很想使用 javascript 警报...请帮忙...

Can somebody please tell me how to put javascript in the controller. I tried someting like this in the sessions controller:

def sign_in
  if user.nil?
      @title = "Sign in"
      render :js => "alert('Invalid email/password combination.');"
  else
      sign_in user
      redirect_back_or user      
  end
end

when I tried that, the page displays in text format: alert('Invalid email/password combination.');

I don't want to use the flash message. I really wanted to use javascript alerts... Pls help...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

久夏青 2024-10-25 22:31:51

对于 UJS 方式,请执行以下操作:

在您的controller.rb中

def sign_in
  if user.nil?    
      @title = "Sign in"    
      respond_to do |format|            
          format.js    
      end
    end    
  else    
      sign_in user    
      redirect_back_or user          
  end    
end

*在sign_in.js.erb*

alert('Invalid email/password combination.');

这将为您提供教会和国家的良好分离。所有 ruby​​ 代码都在controller.rb 中,所有javascript 都在view.js.erb 中。

For the UJS way do this:

in your controller.rb

def sign_in
  if user.nil?    
      @title = "Sign in"    
      respond_to do |format|            
          format.js    
      end
    end    
  else    
      sign_in user    
      redirect_back_or user          
  end    
end

*in sign_in.js.erb*

alert('Invalid email/password combination.');

This will give you a nice separation of church and state. All ruby code in the controller.rb, all javascript in the view.js.erb.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文