rails Ajax--利用Jquery

view

function init_tree(product_name) {
  var htmlobj=$.ajax({url: "get_all_file?param=" + param_value,  async: false});
  var jsonNodes = htmlobj.responseText;
  var newNodes = $.parseJSON(jsonNodes);
  //使用newNodes更新页面
}

 

controller

rails Ajax--利用Jquery
def get_all_file
    # 为@file_tree赋值
    @file_tree=[{:id => code, :pId => p_code, :name => file}, {:id => code1, :pId => p_code1, :name => file1}]
    respond_to do |format|
      format.json { render :json=> @file_tree }
    end
  end
rails Ajax--利用Jquery

 

rails Ajax--利用Jquery,布布扣,bubuko.com

rails Ajax--利用Jquery

上一篇:VS2012 无法启动IIS Express Web服务器的解决方案


下一篇:js便签笔记(9)——解读jquery源码时记录的一些知识点