gpt4 book ai didi

typescript - typescript 权限中的 navigator.canShare() 被拒绝

转载 作者:搜寻专家 更新时间:2023-10-30 21:55:31 25 4
gpt4 key购买 nike

我正在构建一个 Angular8 PWA,我正在使用网络共享来共享文本,效果很好。自 2019 年 5 月起,Chrome 还支持 sharing of files

但是,尝试在 Typescript 中构建文件共享时遇到以下错误:

NotAllowedError:权限被拒绝

let navigator: any;
navigator = window.navigator;
const title = "myTitle";
let data = {
title: title,
text: text,
url: url,
files: []
};
console.log(data);

if (navigator.share) {
fetch(url)
.then(res => res.blob())
.then(file => {
const fileName = data.text + ".mp3";
const options = { type: "audio/mp3" };
const newFile = new File([file], fileName, options);
data.files.push(newFile);
console.log(data);
//lastModified: 1564912016680
//lastModifiedDate: Sun Aug 04 2019 11:46:56 GMT+0200 (Mitteleuropäische //Sommerzeit) {}
//name: "myName.mp3"
//size: 40643
//type: "audio/mpeg"
//webkitRelativePath: ""
if (navigator.canShare(data)) {
navigator
.share(data)
.then(() => {})
.catch(err => {
console.error("Unsuccessful share " + err.message); //here is am getting the Permissions denied error
});
}
});

我不确定这是我获取文件(看起来不错)还是调用 canShare 的方式。我在手机上使用 Chrome。以下 fiddle 适用于我的手机,但您需要选择一个文件。 https://jsfiddle.net/ericwilligers/8cpuskqd/

我的共享功能位于一个按钮上,该按钮基本上包含要共享的文件的链接。

编辑

如果我将 data.files 从数组更改为对象,我会收到以下错误消息:

TypeError:无法在“Navigator”上执行“canShare”:迭代器 getter 不可调用。

edit2

我创建了一个代码笔来重现这个问题:

https://codepen.io/anon/pen/xvXvPZ

最佳答案

这有效

 webshare(url, text) {
let navigator: any;
navigator = window.navigator;
const title = "yourTitle";
let data = { files: [], text: text, url: url, title: title };
const options = { type: "audio/mp3" };

this.http
.get(url, {
responseType: "arraybuffer"
})
.subscribe(response => {
console.log(response);

let blob = new File([response], `${text}.mp3`, options);
data.files.push(blob);
console.log(data);
if (navigator.canShare(data)) {
navigator
.share(data)
.then(() => {})
.catch(err => {
console.error("Unsuccessful share " + err);
});
}
});
}

关于typescript - typescript 权限中的 navigator.canShare() 被拒绝,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57345539/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com