[Cordova] 安裝 plugin

  • 712
  • 0

[Cordova] 安裝 plugin

以下以 dialog plugin 為例:

若一般的 alert 不夠用的話,可以改用 dialog plugin

navigator.notification.alert(message, alertCallback, [title], [buttonName])


message: 要顯示的訊息. (String)

alertCallback: 若要在dialog執行完再執行其他的Function時,可將function名稱設在這裡。. (Function)

title: 視窗標題. (String) (Optional, defaults to Alert)

buttonName: 按鈕名稱. (String) (Optional, defaults to OK)

 

安裝時要先進到專案所在的資料夾,在底下安裝,例如有個 hello專案,就打開cmd,進到 hello 專案底下再執行安裝指令。

 

安裝plugin

    $ cordova plugin add org.apache.cordova.dialogs  
    $ cordova plugin add org.apache.cordova.vibration

或是

cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs.git

cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration.git

 

顯示目前安裝了哪些plugin
    $ cordova plugin ls
    [ 'org.apache.cordova.dialogs',
      'org.apache.cordova.vibration' ]

 

移除plugin
    $ cordova plugin rm org.apache.cordova.dialogs
    $ cordova plugin rm org.apache.cordova.vibration

 

dialog plugin 官網詳細資訊:

http://docs.phonegap.com/en/edge/cordova_notification_notification.md.html#notification.alert