0

我在 rails 3 中有 ajax 代码,但在控制器中没有响应 .. 代码在这里...

 <%= javascript_include_tag "application" %>

 <script type="text/javascript">    
   function fetching(){
     var data=document.getElementById('parent_type').value
     if(data){
       req = new Ajax.Request('/registrations/select_type/1', {
         method: 'get',
         parameters: { data : data},
         onComplete: function(transport) {
           processReqChange(transport);
         }
       }); // end ajax req
     }          
   }
 </script>

在注册控制器中——

def select_type
  raise "hiiiiiiiiiiiiiiii".inspect
  render :js =>"document.getElementById('parent_lname').value='jyothi';"
end 

这里它没有引发“hiiii”,这意味着 ajax 请求没有调用

4

1 回答 1

0

在您的注册控制器中,您应该有一个 respond_to 块

   respond_to do |format|
    format.js {render :js =>"document.getElementById('parent_lname').value='jyothi';"}
   end

供进一步阅读

http://apidock.com/rails/ActionController/MimeResponds/respond_to

于 2012-07-05T00:08:41.750 回答