1

我正在使用 Phonegap 3.0。我已包含在 config.xml 中:gap:plugin name="com.borismus.webintent

并在 index.html 脚本类型="text/javascript" src="webintent.js"

我收到错误 - 在 Android 中运行时出现“邮件表单:通过 Android 意图发送邮件失败:找不到类”

下面是代码:

var extras = {};
extras[window.plugins.webintent.EXTRA_EMAIL] =   "vidya.narasimhan@merceworld.com";
extras[window.plugins.webintent.EXTRA_TEXT] = "hello testing";
console.log('Mail Form: starting webintent activity  ');
window.plugins.webintent.startActivity(
     { 
            action: window.plugins.webintent.ACTION_SEND,
            type: 'application/octet-stream', 
            extras: extras 
     }, 
     function() {
            console.log('Mail Form: sendMail success via Android Intent');
     }, 
     function(e) {
            console.log('Mail Form: sendMail failed via Android Intent:' + e);
     }

);

请帮忙

4

2 回答 2

0

我使用 FileOpener 而不是 WebIntent。

唐的 FileOpener 版本已在我的应用程序 cordova 3.0 上运行

phonegap local plugin add https://github.com/don/FileOpener

然后自动添加所有 xmls、插件等。

在 index.html 上添加fileopener.js然后

window.plugins.fileOpener.open( path );
于 2013-12-30T06:21:56.697 回答
0

有时,您的 webintent 将在 android 模拟器或设备上正常工作,但当您检查servephonegap 应用程序时,您可能会收到此错误。检查设备或模拟器一次!

于 2017-08-31T11:13:14.133 回答