W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
convertFileSrc(: , : ):filePath
string
protocol?
string
string
將設備文件路徑轉(zhuǎn)換為可由 Web 視圖加載的 URL。 請注意,必須將 和添加到 中的 tauri.security.csp
中。 示例 CSP 值:在圖像源上使用資產(chǎn)協(xié)議。asset:
https://asset.localhost
tauri.conf.json
"csp": "default-src 'self'; img-src 'self' asset: https://asset.localhost"
此外,必須添加到 tauri.allowlist.protocol
中,并且必須在同一對象上的數(shù)組上定義其訪問范圍。asset
tauri.conf.json
assetScope
protocol
例
import { appDataDir, join } from '@tauri-apps/api/path';
import { convertFileSrc } from '@tauri-apps/api/tauri';
const appDataDirPath = await appDataDir();
const filePath = await join(appDataDirPath, 'assets/video.mp4');
const assetUrl = convertFileSrc(filePath);
const video = document.getElementById('my-video');
const source = document.createElement('source');
source.type = 'video/mp4';
source.src = assetUrl;
video.appendChild(source);
video.load();
Since: 1.0.0
參數(shù)
名字 | 類型 | 默認值 | 描述 |
---|---|---|---|
filePath | string | undefined | 文件路徑。 |
protocol | string | 'asset' | 要使用的協(xié)議。缺省值為 .只有在使用自定義協(xié)議時才需要設置此項。asset |
Returns: string
可用作 Web 視圖上的源的 URL。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: