本文使用VUE3.0
npm create vue@latest
按提示完成项目创建
依次执行以下命令,确保项目可以正常运行使用
cd useofd
npm install
npm run dev
在执行完成npm run dev
后提示如下图片:
在浏览器输入
http://localhost:5173/
就可以看到VUE的经典页面,说明创建项目成功
//依赖
npm i jszip x2js jb2 opentype.js
//本程序
npm i easyofd
略
<template>
<div id="1111111"> </div>
</template>
onMounted(() => {
let yourElement=document.getElementById("1111111");
let ofd=new EasyOFD('myofdID', yourElement);
})
EasyOFD
展示工具类,只需要两个参数就可以完成页面渲染
参数一:是html内渲染后的唯一ID
参数二:是1.2定义的渲染div
<script setup>
import EasyOFD from "easyofd";
import { onMounted } from 'vue'
onMounted(() => {
let yourElement=document.getElementById("1111111");
let ofd=new EasyOFD('myofdID', yourElement);
})
</script>
<template>
<div id="1111111"> </div>
</template>
<style >
.OfdButton{
padding: 10px 20px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
margin-right: 10px;
}
</style>
<script setup>
import UseOfd from './components/UseOfd.vue'
</script>
<template>
<main>
<UseOfd />
</main>
</template>
<style scoped>
</style>
npm run dev
效果
本节内容需要安装在服务器上,例如NGINX,TOMCAT等。本地调试环境无法正常运行。
错误内容如下:
Access to XMLHttpRequest at 'http://www.easyofd.cn/files/1.ofd' from origin 'http://localhost:5173' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
npm install axios
axios.get('http://www.easyofd.cn/files/1.ofd', { responseType: 'blob' })
.then(response => {
const blob = new Blob([response.data], { type: 'application/octet-stream' });
ofd.loadFromBlob(blob);
})
.catch(error => {
console.error('获取文件失败:', error);
});