在3.x中使用CLI安装后如何使用mp3部分的phonegap插件?

时间:2014-07-15 11:32:47

标签: javascript cordova phonegap-plugins cordova-3 cordova-plugins

我正在尝试升级现有的phonegap 2.x插件以用于我的项目(phonegap 3.5)。这就是我的plugin.xml的js部分看起来像

 <js-module src="www/att.js" name="att">
  <clobbers target="AttPlugin" />
</js-module>

我在这个插件的phonegap 2.x版本中看到了一个如何使用这个js的例子。这就是他们的示例应用程序中的代码看起来像

define([ "require", "exports", "module", "att" ], function(require, exports,
    module) {

/*
 * require att.js in 'phonegap' variable
 */

phonegap = require('att');

phonegap.ATT.authorize(accessKey, secretKey, scope, grantType);

});

在我使用plugin.xml的phonegap 3.5应用程序的代码中,我在上面发布的片段就是我在做什么

AttPlugin.ATT.authorize(accessKey, secretKey, scope, grantType);

我收到错误提示ATTPlugin未定义。我究竟做错了什么? 这是js文件的链接供参考 - &gt; ATT.JS

0 个答案:

没有答案