duanke0178 2016-06-06 19:34
浏览 58
已采纳

如何在cakephp 3.1中渲染ajax返回

I have a table that have checkboxes inside. after select it how to return a sum of values from table in modal before confirm the form? and how to render the ajax response from controller? in my view

    $("#envia-vendas").ajaxForm({
  url: '../vendas/confirmar', 
  type: 'post', 
  success: function (data) {
    $('#myModal').modal('show');
    console.log(data);
  },

in my controller

//dostuf
            if($this->request->is('ajax')){
              $sum = $sum;
              $this->render('ajax/confirmado', 'ajax');
              echo 'bal';
              $this->set('text', 'test');
              $this->set('_serialize', ['text']);

            }

how to print the result in the view without reloading page?

  • 写回答

1条回答 默认 最新

  • ds11111111111111111 2016-06-06 20:55
    关注

    What this fiddle does is grabs all of your inputs, then pops up a modal after the values and names have been injected for confirmation.

    It should give you a good starting point. What this is setup to do is give you the confirmation screen without the need for additional server calls.

    Just set your action to the route that you want to pass the information to for server interactions.

    HTML

    <form id="test-form" method="post" action="your/action/here">
      <input type="text" name="test" value="" />
      <input type="submit" name="submit-form" value="submit" />
    </form>
    
    <div class="modal">
      <div class="form-info-wrapper">
    
      </div>
      <a class="confirm">Confirm Information</a>
    </div>
    

    CSS

    .modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: none;
      background: #FFF;
    }
    

    JS

    jQuery(document).ready(function ($){
        $('body').on('click', 'input[type=submit]', function (e) {
        e.preventDefault();
    
        var data = $(this).parent('form').serializeArray();
    
        $('.form-info-wrapper').empty();
    
        for(_data in data)
        {
            $('.form-info-wrapper').append(data[_data].name + ': ' + data[_data].value);
        }
    
        $('.modal').fadeIn();
      });
    
      $('.confirm').click(function (e){
            e.preventDefault();
    
        $('#test-form').submit();
      });
    });
    

    https://jsfiddle.net/ojaeacps/2/

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 求一段fortran代码用IVF编译运行的结果
  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集
  • ¥15 lammps拉伸应力应变曲线分析
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥15 请问Lammps做复合材料拉伸模拟,应力应变曲线问题
  • ¥30 python代码,帮调试,帮帮忙吧
  • ¥15 #MATLAB仿真#车辆换道路径规划