По сути, у меня есть элемент управления предупреждением, который я хочу отобразить значение переменной.
let confirm = this.alertCtrl.create({
title: 'Are you sure?',
message: `
Are these details correct?
<ul>
<li>Price ($/L):{{dollarPerLitre}}</li>
<li>KMs Done:</li>
<li>Total Spent:</li>
<li>Fuel Type:</li>
<liDate:</li>
</ul>
`,
buttons: [
{
text: 'No',
handler: () => {
console.log('Disagree clicked');
}
},
{
text: 'Yes',
handler: () => {
console.log('Agree clicked');
}
}
]
});
confirm.present();
{{variable}} не работает, но есть, в любом случае, я могу заставить его отображатьсодержимое переменной?
Спасибо.