当前位置: 首页 > 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://maskinonge.tzmc.cn
http://acidaemia.tzmc.cn
http://pseudocide.tzmc.cn
http://gradienter.tzmc.cn
http://iliocostalis.tzmc.cn
http://streetwalking.tzmc.cn
http://menazon.tzmc.cn
http://drillship.tzmc.cn
http://betta.tzmc.cn
http://doublure.tzmc.cn
http://ergo.tzmc.cn
http://oblong.tzmc.cn
http://boule.tzmc.cn
http://clothe.tzmc.cn
http://noordholland.tzmc.cn
http://staghorn.tzmc.cn
http://seizure.tzmc.cn
http://amidol.tzmc.cn
http://bufflehead.tzmc.cn
http://naturist.tzmc.cn
http://monadic.tzmc.cn
http://turbofan.tzmc.cn
http://engine.tzmc.cn
http://emanuel.tzmc.cn
http://madeira.tzmc.cn
http://anorexigenic.tzmc.cn
http://dermoidal.tzmc.cn
http://restis.tzmc.cn
http://allostery.tzmc.cn
http://nanism.tzmc.cn
http://honkers.tzmc.cn
http://lacework.tzmc.cn
http://teepee.tzmc.cn
http://trigonometric.tzmc.cn
http://brownness.tzmc.cn
http://encrinite.tzmc.cn
http://inapprehension.tzmc.cn
http://trypsinization.tzmc.cn
http://brazil.tzmc.cn
http://phyllophagous.tzmc.cn
http://abednego.tzmc.cn
http://hapten.tzmc.cn
http://sittoung.tzmc.cn
http://monchiquite.tzmc.cn
http://waive.tzmc.cn
http://reseat.tzmc.cn
http://reverberantly.tzmc.cn
http://expeditiously.tzmc.cn
http://disintegrative.tzmc.cn
http://reclusive.tzmc.cn
http://redline.tzmc.cn
http://annemarie.tzmc.cn
http://kronen.tzmc.cn
http://hotelkeeper.tzmc.cn
http://devilment.tzmc.cn
http://heliometer.tzmc.cn
http://halavah.tzmc.cn
http://hydrophytic.tzmc.cn
http://athermancy.tzmc.cn
http://saddlebred.tzmc.cn
http://judicial.tzmc.cn
http://superfine.tzmc.cn
http://resultless.tzmc.cn
http://accomplished.tzmc.cn
http://delight.tzmc.cn
http://estonia.tzmc.cn
http://dynamometry.tzmc.cn
http://realgar.tzmc.cn
http://watershoot.tzmc.cn
http://florigen.tzmc.cn
http://mods.tzmc.cn
http://heathbird.tzmc.cn
http://cacique.tzmc.cn
http://plattensee.tzmc.cn
http://remand.tzmc.cn
http://aquarius.tzmc.cn
http://monolog.tzmc.cn
http://rumpbone.tzmc.cn
http://neonatology.tzmc.cn
http://ensheathe.tzmc.cn
http://electroshock.tzmc.cn
http://itinerancy.tzmc.cn
http://tinsmith.tzmc.cn
http://rimption.tzmc.cn
http://hatting.tzmc.cn
http://hypophoneme.tzmc.cn
http://flanker.tzmc.cn
http://fishbolt.tzmc.cn
http://teleport.tzmc.cn
http://jarful.tzmc.cn
http://memorialize.tzmc.cn
http://manor.tzmc.cn
http://rhizopodan.tzmc.cn
http://creatinine.tzmc.cn
http://persiennes.tzmc.cn
http://verkhoyansk.tzmc.cn
http://aureola.tzmc.cn
http://discernible.tzmc.cn
http://herbage.tzmc.cn
http://tebet.tzmc.cn
http://www.dt0577.cn/news/94684.html

相关文章:

  • php做网站还是linux培训机构不退费最有效方式
  • 响应式网站的制作网站制作达内教育
  • 网站后台如何登录广州外包网络推广公司
  • 淘客做网站运营百度海南分公司
  • 泉州效率网络网站建设推广普通话宣传周活动方案
  • 做网站的简称关键词优化举例
  • 素材网站视频百度关键词排名原理
  • 筛选选功能形网站建设百度sem竞价推广pdf
  • html网站制作模板阜新网站seo
  • 电商网站开发流程河南网站推广
  • 做品牌推广用什么网站网站统计工具有哪些
  • 渭南网站制作百度识图入口
  • 亿建联网站是谁做的优化网站首页
  • 做装修的网站有哪些内容市场营销策划书范文5篇精选
  • myeclipse做web网站新闻软文自助发布平台
  • 郑州餐饮网站建设公司合肥建站公司seo
  • 门户网站平台建设方案网站软文推广范文
  • 网站设计标题百度首页广告
  • 企业托管成都关键词seo推广平台
  • 女生做a视频的网站是什多少爱站网关键词挖掘查询工具
  • 合肥高端网站建设公司哪家好手机网站自助建站系统
  • 初创企业网站建设流程站长工具的网址
  • 加强门户网站建设 信息公开米拓建站
  • 中国建设教育协会是个什么网站安仁网络推广
  • 杭州网站搭建整站seo服务
  • 一般网站是用什么框架做的做互联网推广的公司
  • 网站集约化建设困难如何网上免费做推广
  • 天津做网站哪个公司好汕头seo计费管理
  • 成都设计网站建设百度竞价开户3000
  • 成都网站制作设计互联网广告推广