我正在使用Cordova PhoneGap创建一个Android应用程序。并想在我的应用程序中使用一些离子代码。首先,我在<head>
元素中添加了离子CDN。
<script src="https://unpkg.com/@ionic/core@latest/dist/ionic.js"></script>
<link href="https://unpkg.com/@ionic/core@latest/css/ionic.bundle.css" rel="stylesheet">
,然后在<script></script>
中编写以下代码。
async function presentAlert() {
const alertController = document.querySelector('ion-alert-controller');
await alertController.componentOnReady();
const alert = await alertController.create({
header: 'Alert',
subHeader: 'Subtitle',
message: 'This is an alert message.',
buttons: ['OK']
});
return await alert.present();
}
但是除了空白屏幕外,没有显示任何警报。谁能指导我如何在Cordova应用中使用离子代码?