商店
此插件提供持久键值存储。这是处理应用中状态的众多选项之一。有关 Windows 安装程序分发选项和配置的更多信息,请参阅 状态管理概述。
¥This plugin provides a persistent key-value store. This is one of many options to handle state in your application. See the state management overview for more information on additional options.
此存储将允许你将状态保存到文件中,该文件可以根据需要保存和加载,包括在应用重新启动之间。请注意,此过程是异步的,需要在你的代码中处理它。它可以在 Web 视图中或 Rust 中使用。
¥This store will allow you to persist state to a file which can be saved and loaded on demand including between app restarts. Note that this process is asynchronous which will require handling it within your code. It can be used both in the webview or within Rust.
支持的平台
¥Supported Platforms
This plugin requires a Rust version of at least 1.77.2
Platform | Level | Notes |
---|---|---|
windows | ||
linux | ||
macos | ||
android | ||
ios |
设置
¥Setup
安装 store 插件即可开始使用。
¥Install the store plugin to get started.
使用项目的包管理器添加依赖:
¥Use your project’s package manager to add the dependency:
npm run tauri add store
yarn run tauri add store
pnpm tauri add store
deno task tauri add store
bun tauri add store
cargo tauri add store
-
Run the following command in the
src-tauri
folder to add the plugin to the project’s dependencies inCargo.toml
:cargo add tauri-plugin-store -
Modify
lib.rs
to initialize the plugin:src-tauri/src/lib.rs #[cfg_attr(mobile, tauri::mobile_entry_point)]pub fn run() {tauri::Builder::default().plugin(tauri_plugin_store::Builder::new().build()).run(tauri::generate_context!()).expect("error while running tauri application");} -
Install the JavaScript Guest bindings using your preferred JavaScript package manager:
npm install @tauri-apps/plugin-storeyarn add @tauri-apps/plugin-storepnpm add @tauri-apps/plugin-storedeno add npm:@tauri-apps/plugin-storebun add @tauri-apps/plugin-store
使用
¥Usage
import { load } from '@tauri-apps/plugin-store';// when using `"withGlobalTauri": true`, you may use// const { load } = window.__TAURI__.store;
// Create a new store or load the existing one,// note that the options will be ignored if a `Store` with that path has already been createdconst store = await load('store.json', { autoSave: false });
// Set a value.await store.set('some-key', { value: 5 });
// Get a value.const val = await store.get<{ value: number }>('some-key');console.log(val); // { value: 5 }
// You can manually save the store after making changes.// Otherwise, it will save upon graceful exit// And if you set `autoSave` to a number or left empty,// it will save the changes to disk after a debounce delay, 100ms by default.await store.save();
use tauri::Wry;use tauri_plugin_store::StoreExt;use serde_json::json;
#[cfg_attr(mobile, tauri::mobile_entry_point)]pub fn run() { tauri::Builder::default() .plugin(tauri_plugin_store::Builder::default().build()) .setup(|app| { // Create a new store or load the existing one // this also put the store in the app's resource table // so your following calls `store` calls (from both rust and js) // will reuse the same store let store = app.store("store.json")?;
// Note that values must be serde_json::Value instances, // otherwise, they will not be compatible with the JavaScript bindings. store.set("some-key", json!({ "value": 5 }));
// Get a value from the store. let value = store.get("some-key").expect("Failed to get value from store"); println!("{}", value); // {"value":5}
// Remove the store from the resource table store.close_resource();
Ok(()) }) .run(tauri::generate_context!()) .expect("error while running tauri application");}
LazyStore
还有一个高级 JavaScript API LazyStore
,它仅在第一次访问时加载商店
¥There’s also a high level JavaScript API LazyStore
which only loads the store on first access
import { LazyStore } from '@tauri-apps/plugin-store';
const store = new LazyStore('settings.json');
从 v1 和 v2 beta/rc 迁移
¥Migrating from v1 and v2 beta/rc
import { Store } from '@tauri-apps/plugin-store';import { LazyStore } from '@tauri-apps/plugin-store';
with_store(app.handle().clone(), stores, path, |store| { store.insert("some-key".to_string(), json!({ "value": 5 }))?; Ok(())});let store = app.store(path)?;store.set("some-key".to_string(), json!({ "value": 5 }));
权限
¥Permissions
默认情况下,所有潜在危险的插件命令和范围都会被阻止,无法访问。你必须修改 capabilities
配置中的权限才能启用这些权限。
¥By default all potentially dangerous plugin commands and scopes are blocked and cannot be accessed. You must modify the permissions in your capabilities
configuration to enable these.
有关更详细的说明,请参阅 功能概述。
¥See the Capabilities Overview for more information and the step by step guide to use plugin permissions.
{ "permissions": [ ..., "store:default", ]}
Default Permission
This permission set configures what kind of operations are available from the store plugin.
Granted Permissions
All operations are enabled by default.
allow-load
allow-get-store
allow-set
allow-get
allow-has
allow-delete
allow-clear
allow-reset
allow-keys
allow-values
allow-entries
allow-length
allow-reload
allow-save
Permission Table
Identifier | Description |
---|---|
|
Enables the clear command without any pre-configured scope. |
|
Denies the clear command without any pre-configured scope. |
|
Enables the delete command without any pre-configured scope. |
|
Denies the delete command without any pre-configured scope. |
|
Enables the entries command without any pre-configured scope. |
|
Denies the entries command without any pre-configured scope. |
|
Enables the get command without any pre-configured scope. |
|
Denies the get command without any pre-configured scope. |
|
Enables the get_store command without any pre-configured scope. |
|
Denies the get_store command without any pre-configured scope. |
|
Enables the has command without any pre-configured scope. |
|
Denies the has command without any pre-configured scope. |
|
Enables the keys command without any pre-configured scope. |
|
Denies the keys command without any pre-configured scope. |
|
Enables the length command without any pre-configured scope. |
|
Denies the length command without any pre-configured scope. |
|
Enables the load command without any pre-configured scope. |
|
Denies the load command without any pre-configured scope. |
|
Enables the reload command without any pre-configured scope. |
|
Denies the reload command without any pre-configured scope. |
|
Enables the reset command without any pre-configured scope. |
|
Denies the reset command without any pre-configured scope. |
|
Enables the save command without any pre-configured scope. |
|
Denies the save command without any pre-configured scope. |
|
Enables the set command without any pre-configured scope. |
|
Denies the set command without any pre-configured scope. |
|
Enables the values command without any pre-configured scope. |
|
Denies the values command without any pre-configured scope. |
Tauri 中文网 - 粤ICP备13048890号