gpt4 book ai didi

reactjs - 我怎样才能将 react 导出到word文档

转载 作者:行者123 更新时间:2023-12-04 10:54:17 24 4
gpt4 key购买 nike

我有一个 React 应用程序,我想将一些 html 内容导出到 word 文档并下载。例如:

<div> Hello World!!!</div>
<input type="button" onClick={exportToWord()}/>

我搜索一个函数来处理带有文本 Hello world!!! 的 word 文档。

最佳答案

您可以将 redocx 库用于 word 文档React你可以通过 NPM 安装 redocx

npm i redocx

这个简单的示例将在 word doc 中呈现 Hello World

import React from 'react'
import { render, Document, Text } from 'redocx'

class App extends React.Component {
render() {
return (
<Document>
<Text>Hello World</Text>
</Document>
)
}
}

render(<App />, `${__dirname}/example.docx`)

for Demo you can clone this repo and run locally

git clone https://github.com/nitin42/redocx.git
cd redocx
npm install
npm run example

您可以在此处找到所有文档 redocx docs

关于reactjs - 我怎样才能将 react 导出到word文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59303661/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com