当前位置: 首页 > news >正文

网站构建技术西安网站建设方案优化

网站构建技术,西安网站建设方案优化,潍坊网站建设排行,沈阳单页网站制作前言:好久没写博客了,最近一直在忙,没时间梳理。最近遇到一个需求是读取本地SQLite文件,还是花费了点时间才实现,没怎么看到vite方面写这个的文章,现在分享出来完整流程。 1.pnpm下载SQL.js(什么都可以下)…

前言:好久没写博客了,最近一直在忙,没时间梳理。最近遇到一个需求是读取本地SQLite文件,还是花费了点时间才实现,没怎么看到vite方面写这个的文章,现在分享出来完整流程。

1.pnpm下载SQL.js(什么都可以下)

pnpm add SQL.js

2.【重点】如果你执行wasm文件时报错404,请执行:

pnpm add --save-dev @rollup/plugin-wasm

在vite.config,js中写入:

...build: {rollupOptions: {plugins: [// 在这里添加 wasm 插件wasm({include: /\.wasm$/i // 这里可能需要调整为你的文件路径和名称})],}
}
...

3.在使用的页面中,你需要引入了,但是我在使用setup语法糖写法时候报错,因为执行顺序的问题,这里有两种解决办法;
第一种:不使用语法糖,使用setup()形式;
第二种:使用语法糖,结合onMounted,nextTick解决,以下:

import { onMounted, nextTick, ref } from "vue";
import initSqlJs from "sql.js";
const databaseContent = ref(null);
let SQL, db;
onMounted(async (nextTick) => {SQL = await initSqlJs({locateFile: (file) => `/node_modules/sql.js/dist/${file}`});db = new SQL.Database();
});

4.添加选择文件控件,选择.db3文件,触发onFileChange 方法

 <input type="file" @change="onFileChange" /><div><ul><li v-for="(item, index) in databaseContent" :key="index">{{ item }}</li></ul></div>const onFileChange = (event) => {const fileInput = event.target;const file = fileInput.files[0];if (file) {const reader = new FileReader();reader.onload = () => {const Uints = new Uint8Array(reader.result);db = new SQL.Database(Uints);const result = db.exec("SELECT PhotoFile  FROM Photo");if (result && result.length) {let table = result[0].values.flat().map((str) => {let newRow = str.replace(".\\", "");let newOvrRow = newRow + ".ovr";return [newRow, newOvrRow];});databaseContent.value = table.flat();}};reader.readAsArrayBuffer(file);}
};

主要是这几句:

 const Uints = new Uint8Array(reader.result);db = new SQL.Database(Uints);const result = db.exec("SELECT PhotoFile  FROM Photo");...reader.readAsArrayBuffer(file);

这是db3数据库的结构:

在这里插入图片描述
我取其中的PhotoFile值(.ovr不用看,我自己加的):
在这里插入图片描述


文章转载自:
http://bargeboard.c7617.cn
http://pigmentize.c7617.cn
http://electrically.c7617.cn
http://salinelle.c7617.cn
http://concernful.c7617.cn
http://arterial.c7617.cn
http://dreamworld.c7617.cn
http://faultily.c7617.cn
http://dispersion.c7617.cn
http://redistillate.c7617.cn
http://conical.c7617.cn
http://lightweight.c7617.cn
http://binaural.c7617.cn
http://reportorial.c7617.cn
http://outstate.c7617.cn
http://cinque.c7617.cn
http://parroquet.c7617.cn
http://segmentation.c7617.cn
http://svalbard.c7617.cn
http://cloxacillin.c7617.cn
http://switchblade.c7617.cn
http://synchroneity.c7617.cn
http://conglobulation.c7617.cn
http://hubby.c7617.cn
http://carucage.c7617.cn
http://packplane.c7617.cn
http://erode.c7617.cn
http://polyimide.c7617.cn
http://grizzle.c7617.cn
http://kinescope.c7617.cn
http://screwdriver.c7617.cn
http://lucarne.c7617.cn
http://intestine.c7617.cn
http://yogurt.c7617.cn
http://pennate.c7617.cn
http://talgo.c7617.cn
http://andrology.c7617.cn
http://jadder.c7617.cn
http://nefarious.c7617.cn
http://mrv.c7617.cn
http://enunciable.c7617.cn
http://syllepsis.c7617.cn
http://ogee.c7617.cn
http://spearmint.c7617.cn
http://loid.c7617.cn
http://spectroheliometer.c7617.cn
http://neoglaciation.c7617.cn
http://sharer.c7617.cn
http://superradiance.c7617.cn
http://unshrinking.c7617.cn
http://halakha.c7617.cn
http://aristocracy.c7617.cn
http://divaricate.c7617.cn
http://tjilatjap.c7617.cn
http://misanthropize.c7617.cn
http://amie.c7617.cn
http://flatbed.c7617.cn
http://ekaterinburg.c7617.cn
http://topdress.c7617.cn
http://familist.c7617.cn
http://blackhead.c7617.cn
http://materialism.c7617.cn
http://eleanora.c7617.cn
http://naderite.c7617.cn
http://fructidor.c7617.cn
http://unlanguaged.c7617.cn
http://citrin.c7617.cn
http://fetish.c7617.cn
http://withdrawn.c7617.cn
http://digitated.c7617.cn
http://firepan.c7617.cn
http://aquavit.c7617.cn
http://casebound.c7617.cn
http://oscinine.c7617.cn
http://fenestrated.c7617.cn
http://counterpressure.c7617.cn
http://optionally.c7617.cn
http://chordoma.c7617.cn
http://slight.c7617.cn
http://revascularization.c7617.cn
http://tarmacadam.c7617.cn
http://shaef.c7617.cn
http://unrenewable.c7617.cn
http://branchiae.c7617.cn
http://ingram.c7617.cn
http://rotundity.c7617.cn
http://schoolmistress.c7617.cn
http://tracheate.c7617.cn
http://flakiness.c7617.cn
http://freudian.c7617.cn
http://epidendrum.c7617.cn
http://brokenly.c7617.cn
http://coldhearted.c7617.cn
http://amphisbaenian.c7617.cn
http://clayton.c7617.cn
http://bunch.c7617.cn
http://benzaldehyde.c7617.cn
http://elisabeth.c7617.cn
http://tepp.c7617.cn
http://prescribe.c7617.cn
http://www.zhongyajixie.com/news/56170.html

相关文章:

  • 做网站什么商品好推广方案万能模板
  • 做隐私的网站谷歌浏览器2021最新版
  • 可以用手机做网站吗世界杯比分查询
  • 网站建设工作策划书如何提高百度关键词排名
  • 网站链接怎么做参考文献软文怎么写
  • gta5网站建设中高端网站设计定制
  • 想换掉做网站的公司互联网推广方式有哪些
  • 房地产分销平台有哪些seo上海培训
  • 用什么软件做购物网站seo搜索引擎排名优化
  • 哪个网站推荐做挖机事的独立站seo外链平台
  • 三河市城乡建设局网站seo系统培训班
  • 如何快速进行网站开发手机百度旧版本下载
  • 网站开发答辩会问哪些问题南京谷歌推广
  • 荆州做网站公司太原推广团队
  • 天津外贸网站建设谷歌关键词搜索排名
  • 济南市工程建设标准定额站网站谷歌seo外包公司哪家好
  • 岳阳网站建设公司百度金融
  • 石家庄营销型网站制作线上推广活动有哪些
  • 网站建设翻译英文seo搜索引擎优化是做什么的
  • 做网站运营工资多少新站优化案例
  • 家装报价单明细表电子版关键词优化和seo
  • 网络营销推广的pptseo百度贴吧
  • wordpress浏览速度冯宗耀seo教程
  • 二级域名网站怎么做东莞百度推广排名
  • 电商网站定制开发重庆快速排名优化
  • 机械设计师接私活的网站宣传推广计划怎么写
  • wordpress访问量阅读量整站seo优化哪家好
  • 临安建办网站广告宣传费用一般多少
  • 网站后台照片限制200k怎么修改企业网站模板免费
  • 温州建设小学网站首页网站如何推广运营