0

我想从我的用户信息页面制作一个 pdf。我使用 react-pdf,但我没有在 react-pdf 网页中找到有关使用我的文档变量中的道具的信息。是否可以使用它或者我怎么能不使用任何道具?

const MyDoc = () => (
<Document>
  <Page size="A4" style={styles.page}>
    <View style={styles.section}>
    <Header as="h5" dividing color="teal" content="User Info" />
       Please contact with your manager
        <Table id="pdf">
          <Table.Body>
            <Table.Row>
              <Table.Cell><Header as='h4'>Name</Header></Table.Cell>
              <Table.Cell>{this.props.user.profile.name == null || this.props.user.profile.surname == null ? "-" : this.props.user.profile.name + " " + this.props.user.profile.surname}</Table.Cell>
            </Table.Row>   .....
4

1 回答 1

0

如果从同一页面收集用户信息,您可以使用用户信息而不作为道具传递,或者您可以将用户信息从您收集的页面分配给变量并尝试导入 MyDoc()。

于 2020-09-05T12:29:12.533 回答