Ruby是否是AJAX请求判断
def test_request if request.xml_http_request? #request.xhr?是一样的 #是ajax请求 else #不是ajax请求 end end
这样的话有的时候 就没必要一个ajax另外再取一个方法(假如主体函数功能不是很多的话)
def test_request if request.xml_http_request? #request.xhr?是一样的 #是ajax请求 else #不是ajax请求 end end
这样的话有的时候 就没必要一个ajax另外再取一个方法(假如主体函数功能不是很多的话)