onlyoffice7.3 jwt vue
时间: 2023-09-24 07:09:06 浏览: 84
onlyoffice documentserver7.3.3自编译 docker版
只要您有一个有效的 JWT,您可以在 Vue 应用程序中使用 OnlyOffice 7.3。以下是一个简单的示例,演示如何将 JWT 添加到 OnlyOffice 7.3 的请求中:
```javascript
import * as OO from 'onlyoffice-documenteditor';
const docEditor = new OO.DocumentEditor();
const jwt = 'your_jwt_here';
docEditor.init('placeholder', {
document: {
fileType: 'docx',
permissions: {
edit: true,
download: true,
print: true,
comment: true,
review: true,
},
info: {
author: 'John Doe',
created: new Date(),
modified: new Date(),
name: 'Document Name',
},
},
callbackUrl: 'https://your-callback-url.com',
documentType: 'Text',
documentId: 'your_document_id_here',
jwt: jwt,
});
```
在上面的示例中,我们创建了一个 OnlyOffice 文档编辑器对象并将其初始化。我们将 JWT 添加到 `jwt` 属性中,这个 JWT 将在每个请求中发送到 OnlyOffice 服务器。请确保您的 JWT 是有效的,否则请求将被拒绝。
阅读全文