背景模式无法在phonegap中工作

时间:2015-12-08 10:45:28

标签: javascript cordova plugins

尝试使用background mode时出错。它说:无法读取'undefined'的属性'enable'。

window.plugin.backgroundMode.enable(); 

cordova.plugins.backgroundMode.onactivate = function() 
{
  setTimeout(function () 
             {
    cordova.plugins.notification.local.schedule([{
      id: 1,
      title: "Some Title",
      text: "Some text!"
    },{
      id: 2,
      title: "Some Title",
      text: "Some text!"
    },{
      id: 3,
      title: 'Some Title',
      text: 'Some text!'
    }]);
  }, 5000);
}
navigator.app.exitApp();

1 个答案:

答案 0 :(得分:0)

你没有调用正确的方法。这是正确的电话:

cordova.plugins.backgroundMode.enable();

另外,请确保已将插件添加到config.xml,并且仅在deviceready事件触发后调用插件上的方法。