<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'