gpt4 book ai didi

ipad - Phonegap/iPad -- UTI's - Doc types...如何处理传入的 URL

转载 作者:行者123 更新时间:2023-12-04 20:52:23 25 4
gpt4 key购买 nike

我想导入和导出 CSV。我已经想出了如何让 iPad 将我的应用程序识别为打开 CSV 文件的应用程序。

从那里虽然我迷路了。我找到了有关 iPad 如何通过 application:didFinishLaunchingWithOptions 或 handleOpenURL 在我的文件中发送的解释...

我发现在我的 js 文件中添加一个名为 handleOpenURL(url) 的函数会将文件的 url 传递给我……所以现在我有了这个。

这很好,因为我现在知道有人以这种方式打开了我的应用程序。 酷...但是我如何获取该 URL 的内容?

最佳答案

知道了!哇,这就是我所做的......

function handleOpenURL(url)
{
window.resolveLocalFileSystemURI(url, onResolveSuccess, fail)
}

function onResolveSuccess(fileEntry)
{
fileEntry.file(win, fail);
}

function win(file) {

var reader = new FileReader();
reader.onloadend = function(evt) {
alert("succes");
alert(evt.target.result);
}
reader.readAsText(file);
}

function fail() {
alert('fail');
}

关于ipad - Phonegap/iPad -- UTI's - Doc types...如何处理传入的 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8954561/

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