作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我安装了 pdfjs-dist并尝试导入它并使用以下组件将其与 react
一起使用:
import React, { Component } from 'react'
import * as pdfjs from 'pdfjs-dist'
class App extends Component {
componentDidMount() {
pdfjs.getDocument('./sample.pdf').promise.then(doc => console.log(doc.numPages))
}
render() {
return <div>test pdf</div>
}
}
export default App
但我在控制台收到下一个错误
Uncaught (in promise) Error: Setting up fake worker failed: "Cannot read property 'WorkerMessageHandler' of undefined".
我还尝试将导入语句更改为:
从 'pdfjs-dist/webpack' 导入 pdfjs
但是我得到了这个错误:
未捕获的 ReferenceError:未定义窗口
最佳答案
关于reactjs - 将 PDF.js 查看器与 React.js 库一起使用时未捕获( promise )错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55439457/
在我们的数据库表上,我们使用两个唯一的非聚集索引来创建跨四个字段的唯一约束。我们使用两个,因为其中一个字段 ZipCode 是一个可为空的字段。如果表中存在一条包含 ZipCode 的 null 条目
我刚刚开始学习 Rails 3 教程,以便对框架有一点熟悉,但我在生成 schema.rb 时遇到了问题。我的操作系统是 Windows 7 x64、Ruby 1.9.2、MySQL2 gem 0.2
我是一名优秀的程序员,十分优秀!