Tauri 在JavaScript中访问文件

2023-10-20 17:48 更新

在这个示例中,我们希望捆绑附加的 i18n JSON 文件,这些文件看起来像这样:

de.json

{
"hello": "Guten Tag!",
"bye": "Auf Wiedersehen!"
}

在这种情况下,我们将这些文件存储在 tauri.conf.json 旁边的 lang 目录中。为此,我们将 "lang/*" 添加到资源(resources),并将 $RESOURCE/lang/* 添加到 fs 范围,就像上面所示的那样。

请注意,您必须配置允许列表(allowlist),以启用 path > all 和您需要的 fs API,在这个示例中是 fs > readTextFile。

import { resolveResource } from '@tauri-apps/api/path'
// alternatively, use `window.__TAURI__.path.resolveResource`
import { readTextFile } from '@tauri-apps/api/fs'
// alternatively, use `window.__TAURI__.fs.readTextFile`

// `lang/de.json` is the value specified on `tauri.conf.json > tauri > bundle > resources`
const resourcePath = await resolveResource('lang/de.json')
const langDe = JSON.parse(await readTextFile(resourcePath))

console.log(langDe.hello) // This will print 'Guten Tag!' to the devtools console


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号