离子框架 - 是否可以使用 $ionicPopup.confirm() 更改按钮的文本?



我使用$ ionicpop .confirm(),但我想更改"取消按钮"文本。这可能吗?

我知道。show()语法:
  buttons: [
  { text: 'Cancel' }
  ]

但是对于。confirm()…似乎不起作用

Thank the help

至少在最新版本的Ionic(1.0.0)中,您可以做以下操作:

    var confirmPopup = $ionicPopup.confirm({
        title: 'Popup title',
        template: 'Popup text',
        cancelText: 'Custom cancel',
        okText: 'Custom ok'
    }).then(function(res) {
        if (res) {
            console.log('confirmed');
        }
    });

这里是相关的文档

更新:在ionic 1.0.0上,这现在是可能的,查看这里

showConfirm Options:

{
  title: '', // String. The title of the popup.
  cssClass: '', // String, The custom CSS class name
  subTitle: '', // String (optional). The sub-title of the popup.
  template: '', // String (optional). The html template to place in the popup body.
  templateUrl: '', // String (optional). The URL of an html template to place in the popup   body.
  cancelText: '', // String (default: 'Cancel'). The text of the Cancel button.
  cancelType: '', // String (default: 'button-default'). The type of the Cancel button.
  okText: '', // String (default: 'OK'). The text of the OK button.
  okType: '', // String (default: 'button-positive'). The type of the OK button.
}

是的,你可以做任何你想做的,使用离子弹出。显示并绑定Cancel事件。

$ionicPopup.show({
   template: msg,
   title: titleConfirm,
   buttons: [
     { text: "BTN_NO",
       onTap:function(e){
            return false;
       }
     },
     { text: "BTN_OK",
       onTap:function(e){
            return true;
       }
     },
   ]
});

离子弹窗的研究。这是确认函数无法自定义它。弹出窗口的值。确认硬编码行446

function showConfirm(opts) {
    return showPopup(extend({
      buttons: [{
        text: opts.cancelText || 'Cancel',
        type: opts.cancelType || 'button-default',
        onTap: function() { return false; }
      }, {
        text: opts.okText || 'OK',
        type: opts.okType || 'button-positive',
        onTap: function() { return true; }
      }]
    }, opts || {}));
  }

这是可以做到的,你必须在按钮内使用"type"属性

buttons: [
            { text: 'Cancel' },
            {
                text: '<b>Save</b>',
                type: 'button-assertive',
                onTap: function(e) {
                    $scope.request_form.abc = "accepted";
                }
            }
        ]

type部分中,您必须给出类名,并且您可以更改按钮的颜色

相关内容

  • 没有找到相关文章

最新更新