使用大虾生成pdf时的表格生成问题

发布于 2024-12-04 08:58:53 字数 1214 浏览 1 评论 0原文

    **I want to insert a table inside a parent table column.**

e.g :-
     <table>
      <tr>
        <th> Type </th>
        <th> Rate </th>
        <th> Duration </th>
      </tr>
      <tr>
      <td> Time <br/>
        <table>
           <tr>
            <th> Name</th>
            <th> Rate </th>
            <th> Duration </th>
          </tr> 
          <tr>
            <td> Tom </td>
            <td> $100 </td>
            <td> 25 </td>
         </tr>
         <tr>
            <td> Tom1 </td>
            <td> $200 </td>
            <td> 20 </td>
         </tr>
         <tr>
            <td> Tom2 </td>
            <td> $300 </td>
            <td> 26 </td>
         </tr>
        </table>
      </td>
      <td> $1000</td>
      <td> 65 </td>
     </tr>
    </table>

 This is in html format . I want to display content in the same format in pdf using prawn.
    **I want to insert a table inside a parent table column.**

e.g :-
     <table>
      <tr>
        <th> Type </th>
        <th> Rate </th>
        <th> Duration </th>
      </tr>
      <tr>
      <td> Time <br/>
        <table>
           <tr>
            <th> Name</th>
            <th> Rate </th>
            <th> Duration </th>
          </tr> 
          <tr>
            <td> Tom </td>
            <td> $100 </td>
            <td> 25 </td>
         </tr>
         <tr>
            <td> Tom1 </td>
            <td> $200 </td>
            <td> 20 </td>
         </tr>
         <tr>
            <td> Tom2 </td>
            <td> $300 </td>
            <td> 26 </td>
         </tr>
        </table>
      </td>
      <td> $1000</td>
      <td> 65 </td>
     </tr>
    </table>

 This is in html format . I want to display content in the same format in pdf using prawn.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冷清清 2024-12-11 08:58:53

您是否尝试过使用WickedPDF。它是一个 PDF 生成工具,但您编写 HTML 而不是学习新语法等。它还有一个额外的好处,即能够使用 Webkit 语法,因此 html5 始终保持一致

Have you tried using WickedPDF. It's a PDF generation tool, but you write the HTML instead of learning new syntax etc. It also has the added bonus of being able to use Webkit syntax so html5 is consistant throughout

离线来电— 2024-12-11 08:58:53

您正在尝试嵌套表格。看看这个问答:大虾PDF:我需要生成嵌套表

You are trying to nest tables. Take a look at this question and answer: prawn PDF: I need to generate nested tables

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文