ionic 的Toast提示信息

ionic 有多种方法提示信息,在 这使用ngcordova的$cordovaToast  。

1、在项目中执行

cordova plugin add https://github.com/EddyVerbruggen/Toast-PhoneGap-Plugin.git

把相应的包加进项目,该$cordovaToast 包含以下方法:

show(message, duration, position)
参数说明
message  String Message of the spinner dialog. Leave blank for no message
duration   StringDuration of time to display the toast. Options : 'short', 'long'
position   StringLocation of the toast. Options : 'top', 'center', 'bottom'



showShortTop(message)
showShortCenter(message)
showShortBottom(message)
showLongTop(message)
showLongCenter(message)
showLongBottom(message)

使用例子

module.controller('MyCtrl', function($cordovaToast) {

  $cordovaToast
    .show('Here is a message', 'long', 'center')
    .then(function(success) {
      // success
    }, function (error) {
      // error
    });

  $cordovaToast.showShortTop('Here is a message').then(function(success) {
    // success
  }, function (error) {
    // error
  });

  $cordovaToast.showLongBottom('Here is a message').then(function(success) {
    // success
  }, function (error) {
    // error
  });

});

更多插件参考:http://ngcordova.com/docs/plugins/


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值