Phonegap/cordova 无法找到电子邮件附件文件
Phonegap/cordova cant able to locate the email attachement file
我正在开发一个用于在屏幕上显示文件的 phonegap app/cordova 应用程序,我有 .true 文件,其中包含 json format.I 中文件的图像试图在应用程序屏幕上显示 .true 文件中的图像,但我可以找到该文件,即使我可以用我的应用程序打开
My application need to detect the ".true" file
[![][2]][2]
[![][3]
如果我在这里打开文件实际上是带到应用程序,但我无法在应用程序中打开,因为我在下载目录中看不到我从电子邮件附件中打开的文件
为了从其他应用程序接收数据到您的应用程序,我们需要使用 web-intent,您可以从这里下载插件 link
https://github.com/GroupAhead/cordova-plugin-webintent
在您的文档设备中使用此代码
window.plugins.webintent.getUri(function(url) {
if(url !== "") {
// url is the url the intent was launched with
$('p').html(url+"printing");
alert("hi");
alert(url);
}
});
url 是启动 Intent 的地方,您可以从 url 访问文件
我正在开发一个用于在屏幕上显示文件的 phonegap app/cordova 应用程序,我有 .true 文件,其中包含 json format.I 中文件的图像试图在应用程序屏幕上显示 .true 文件中的图像,但我可以找到该文件,即使我可以用我的应用程序打开
My application need to detect the ".true" file
[![][2]][2]
[![][3]
如果我在这里打开文件实际上是带到应用程序,但我无法在应用程序中打开,因为我在下载目录中看不到我从电子邮件附件中打开的文件
为了从其他应用程序接收数据到您的应用程序,我们需要使用 web-intent,您可以从这里下载插件 link https://github.com/GroupAhead/cordova-plugin-webintent
在您的文档设备中使用此代码
window.plugins.webintent.getUri(function(url) {
if(url !== "") {
// url is the url the intent was launched with
$('p').html(url+"printing");
alert("hi");
alert(url);
}
});
url 是启动 Intent 的地方,您可以从 url 访问文件