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/

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

报告相同问题?

悬赏问题

  • ¥15 微信会员卡等级和折扣规则
  • ¥15 微信公众平台自制会员卡可以通过收款码收款码收款进行自动积分吗
  • ¥15 随身WiFi网络灯亮但是没有网络,如何解决?
  • ¥15 gdf格式的脑电数据如何处理matlab
  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表
  • ¥15 MATLAB实现区间[a,b]上的Gauss-Legendre积分