2

我正在使用 ajax 调用打印 pdf 并将其通过电子邮件发送给用户,但问题是 pdf 中的数据未格式化。

这是我的ajax调用

$(document).ready(function() {
$(function() {
    $(".submit").click(function() {
      $('.simpleCart_items').css({'position:':'relative'});
      $('.headerRow div').css({'display':'none'});
      $('.item-remove').css({'display':'none'});
       $('.itemRow').css({'position':'absolute'}, {'left':'0px'}, {'top':'50px'});
      $('.item-name').css({'position':'absolute'}, {'left':'50px'}, {'top':'0px'});
      $('item-price').css({'position':'absolute'}, {'left':'150px'}, {'top':'0px'});
      $('.item-total').css({'position':'absolute'}, {'left':'250px'}, {'top':'0px'});
      var data = $('#yhteystiedot').serializeArray();
      data.push( { name: 'cartContent', value: $('#emailedcart').html()});
      //alert (data);return false;
     $.ajax({
    type: "POST",
    data: data,
    url: "order/order.php",
    dataType: "html",
    error: function(){ alert("Jotakin meni pahasti pieleen! Yritä uudelleen?");
 },
    success: function() {
 alert("Onnistui");
        }


  });
  return false;

    });
  });        
});

它为推送到脚本的数据添加了样式,但它看起来并不应该如此。这是有关它的屏幕截图: pdf

4

1 回答 1

1

抱歉,这里是正确答案。

仅使用INLINE CSS来处理 TCPDF 之类的;

<table style="width: 100px;" cellspacing="0" cellpadding="0">
  <tr>
    <td style="border: 1px solid #000000; height: 20px; text-align:center; font-weight: bold; font-size: x-large;" colspan=11>
        REPORT
    </td>
  </tr>

或者像这样包装在你的代码中<style>p{color:red;}</style>

TCPDF 有类问题。使用 AJAX 发送此 HTML 数据。尝试这样并在此处发表评论。

于 2012-09-08T15:12:38.133 回答