<script>
function check()
{
<% if !user_signed_in? %>
alert("Sign in to order");
<%redirect_to :path=>new_user_session_path%>
<% else %>
<% if current_user.points < form.order_total.value %>
<%redirect :path=>credits_path%>
<% end %>
<% end %>
}
</script>
我已经在订单新页面中写了这个。我写这个是为了响应 onclick 动作。我在这里做错了什么?我也试过
<% redirect_to new_user_sessions_path %> 和另一个类似。我应该如何改变才能使它起作用?
我得到的错误是
undefined method `redirect_to'