vue3+webOffice合集

1、webOffice 初始化

1)officeType:

文档位置:https://solution.wps.cn/docs/web/quick-start.html#officetype

2)appId: 前端使用appId 后端需要用到AppSecret

3)fileId: 由后端返回,前端无法生成 ,与上传文件生成的文件id无关

4)mount: 前端挂载的div

5)mode: 显示模式,nomal为普通模式,simple为极简模式

文档位置:https://solution.wps.cn/docs/web/config.html#显示模式

6)wordOptions: 其他配置

文档位置:https://solution.wps.cn/docs/web/config.html#文字选项

javascript 复制代码
//注意:这里一定要设置宽高,否则不会显示
 <div id='wps' ref='wpsRef' style="width:600px;height:500px"></div>
 	
 const init = async ()=>{
 	const ele = document.getElementById('wps') 
    const instance = await webOfficeSDK.init({
      officeType: 'w', 
      appId: 'xxxx',  
      fileId: '2',
      mount: ele,
      mode: 'simple',
      wordOptions: {
        isShowDocMap: false,  //是否开启目录功能
        isBestScale: true  //打开文档默认以最佳比例显示
      } 
    })
    //注意:一定要等到ready完才做其他的操作 不然会出现模块未定义或找不到
    const ready = await this.instance.ready()
    if(ready){
      ...
      return ture
     }
     return false
   }


//初始化
onMounted(async()=>{
	const res = await init()
	if(res){
		// 其他操作 例如 请求接口数据回显到下拉组件
	}
})

2、修改wps的宽度样式

1)需求描述:与官方案例类似 ,但是需要添加一个收缩/展示按钮,当右侧表单收缩时,左侧的文档宽度应为100%,当右侧表单展示时,左侧文档恢复原样

2)实现思路

  • 左侧div设置固定的宽度和高度,例如80%,且div里面放挂载wps的div,右侧表单设置固定宽度和高度,例如20%,根据按钮的显示隐藏动态设置其宽度
javascript 复制代码
<div :style="flg?'width:80%':'width:100%'">
	<div id='wps' style="width:100%;height:100%"></div>
</div>
<div :style="flg?'width:20%':'width:0%'">
	<div id='wps'></div>
</div>

注意:按钮控件可以控制外层div的宽度动态变化,无法控制wps的宽度变化,需要使用到实例对象值的iframe对象

文档位置:https://solution.wps.cn/docs/web/instance.html

  • 设置iframe
javascript 复制代码
//上面初始化时有个ready状态
const iframe = ref(null)
 
if(ready){
 iframe = await instance.iframe
 return ture
}
//当按钮点击时(不管是收缩还是展开都设置为100%且文档自适应)
iframe.style.width = "100%"
//app 也是在ready后面获取 可参考官方文档
app.ActiveDocument.ActiveWindow.View.Zoom.Percentage = 100 //设置窗口缩放比例
app.ActiveDocument.ActiveWindow.View.Zoom.PageFit = 2  //缩放视图自适应文档窗口的尺寸
相关推荐
林涧泣9 小时前
【Uniapp-Vue3】uni-icons的安装和使用
前端·vue.js·uni-app
拉一次撑死狗9 小时前
Vue基础(2)
前端·javascript·vue.js
林涧泣11 小时前
【Uniapp-Vue3】下拉刷新
前端·vue.js·uni-app
Jane - UTS 数据传输系统13 小时前
VUE+ Element-plus , el-tree 修改默认左侧三角图标,并使没有子级的那一项不展示图标
javascript·vue.js·elementui
ThomasChan12315 小时前
Typescript 多个泛型参数详细解读
前端·javascript·vue.js·typescript·vue·reactjs·js
计算机学姐17 小时前
基于微信小程序的民宿预订管理系统
java·vue.js·spring boot·后端·mysql·微信小程序·小程序
Swift社区18 小时前
统计文本文件中单词频率的 Swift 与 Bash 实现详解
vue.js·leetcode·机器学习
Zero_pl19 小时前
vue学习路线
vue.js
2013crazy19 小时前
Java 基于 SpringBoot+Vue 的校园兼职平台(附源码、部署、文档)
java·vue.js·spring boot·兼职平台·校园兼职·兼职发布平台