Phonegap notification.alert仅适用于Android

时间:2015-06-09 14:46:51

标签: android ios cordova notifications phonegap-plugins

我使用cordova 3.4构建了一个ios / android应用程序。 我使用此代码来个性化我的提醒消息:

navigator.notification.alert(
    'message',  // message
    'title',            // title
    'name'                  // buttonName
);

该代码在Android中完美运行,但在ios中我在控制台中收到以下消息:

[Log] The old format of this exec call has been removed (deprecated since 2.1). Change to: cordova.exec(null, null, "", "Ok",[null,"Notification","alert",["message","title","name"]]); (console-via-logger.js, line 173)

我错过了什么?

1 个答案:

答案 0 :(得分:3)

我遇到了同样的问题,经过几个小时的搜索后解决方案非常简单,你错过了回调。

navigator.notification.alert(

'message',  // message
null,   //callback function   <-----------
'title',            // title
'name'                  // buttonName

);

我希望它可以帮到你