在此代码html表标签中不被接受。我不知道为什么在代码中我已经尝试但结果没有来我想要在代码中使用border style.html的表格格式也试过了
这是我的html表:
let mailOptions = {
from: 'aaaaaaaaa',
to: 'bbbbbbbbbb',
subject: 'Test',
html:`<html><head>
<body>
<table>
<tr>
<th>Id </th><th>Templatename</th>
<th>Description</th>
<th>TemplateContent</th>
<th>Active</th>
</tr>
<tr>
<td>streamingTemplate.id.toString()</td>//here the table data should be a database not the defined one.
<td>streamingTemplate.template_name.toString()</td>
<td>streamingTemplate.description.toString()</td>
<td>streamingTemplate.template_content.toString()</td>
<td>streamingTemplate.is_active.toString()</td>
</tr>
</table>
</body>
</head></html>`
};
答案 0 :(得分:0)
您的<table>
标记位于<head>
标记内。
将您的结构更改为:
<html>
<head>
</head>
<body>
<table></table>
</body>
</html>
答案 1 :(得分:0)
Linker
标记内有空格字符。它是<table>
而不是<table >