Я использую Ionic для своего последнего проекта, но я борюсь с Alert.
Я создал один таким образом:
const alert = await this.alertController.create({
header: 'Ordering options',
inputs: this.order.options.map(option => ({
name: option.name,
type: "radio",
label: option.readable,
value: option.name,
checked: (option.name === this.order.selected),
handler: () => {
this.order.selected = option.name;
this.order.apply();
alert.dismiss();
},
}))
Хотя код работает, часть ionic lab
выводом компиляции является следующее предупреждение:
[ng] ERROR in src/app/overview/order/order-mobile.component.ts(24,7): error TS2322: Type '{ name: any; type: string; label: any; value: any; checked: boolean; handler: () => void; }[]' is not assignable to type 'AlertInput[]'.
[ng] Type '{ name: any; type: string; label: any; value: any; checked: boolean; handler: () => void; }' is not assignable to type 'AlertInput'.
[ng] Types of property 'type' are incompatible.
[ng] Type 'string' is not assignable to type '"number" | "password" | "time" | "text" | "date" | "email" | "search" | "tel" | "url" | "checkbox" | "radio"'.
В чем дело?
Спасибо за помощь.