Cordova Angular InAppBrowser无法显示Sweetalerts(swal)

时间:2018-11-28 11:04:32

标签: cordova alert inappbrowser sweetalert sweetalert2

我想在cordova inappbrowser插件中显示sweetalerts而不是常规警报。

我的问题:无法在移动应用程序内部工作

我的代码:

browser.executeScript({
  code: "swal({    title: 'Loading the next BUY',    imageUrl: 'assets/imgs/logo.png',    imageHeight: 200,    imageWidth: 200,    imageAlt: 'A tall image',    position: 'center',    backdrop: 'linear-gradient(217deg, rgba(255,0,0,.8), rgba(255,0,0,0) 70.71%), linear-gradient(127deg, rgba(0,255,0,.8), rgba(0,255,0,0) 70.71%), linear-gradient(336deg, rgba(0,0,255,.8), rgba(0,0,255,1) 70.71%)',    background: 'linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.4))',    allowOutsideClick: false,    allowEscapeKey: false,    allowEnterKey: false,    showConfirmButton: false,    showCancelButton: false,    timer: 1500  }) ;  "
})

在此代码中,swal不会在浏览器(移动应用程序)内打开。

browser.executeScript({code: "alert('usualalertworks');"});

但是在此代码中它将显示警报。

有什么建议吗?

0 个答案:

没有答案