我在rails + jquery ajax上使用ruby
我的功能是让用户检查新用户注册的可用性。
function checkavailablity(){
var username = jQuery("#user_email").val();
var allNodes = 'name=' + username;
var capture;
if ((username).length > 0) {
jQuery('#availability').show().text("Checking...");
jQuery.ajax({
url: "/user_available",
data: allNodes,
success: function(result) {
// Call this function on success
alert(result);
// showResponseRegisterCheck( result );
// return result;
},
error: function() {
alert('Error occured');
}
});
} else {
jQuery('#availability').addClass('show_msg');
jQuery('#availability').show().text('Please enter a valid email id');
return false;
}
}
==================================================== ==========================
在rails上我的方法是
def user_available
render :nothing => true
p user_email = params[:name]
p @user_email = User.where("email = ?",user_email).first
if @user_email.nil?
@ww = "yes"
else
@ww = "no"
end
return @ww
end
==================================================== ====================
我的问题是
在我的 ajax 成功中我没有输出,但
在我的 rails 方法中我返回的是或否值。