admin管理员组文章数量:1433495
I've got a simple react ponent where I have input which should be able to bee one of to types. I don't know how to do this, if it's possible. If not what would be a good practices of archiving the same effect?
import * as React from 'react'
interface Checkboxes {
label?: string
items: any //should be either string[] or CheckboxItem[]
}
interface CheckboxItem {
text: string
checked?: boolean
}
export default function Checkboxes(props: Checkboxes) {
const {
label,
items,
} = props
return (
<fieldset className="checkboxes">
{label && <legend>{label}</legend>}
{items.map((item, index) => <label key={index}><input type="checkbox" defaultChecked={item.checked} />{item.text}</label>)}
</fieldset>
)
}
` As i tried union types the following error appears on the map function:
(property) Array<T>.map: (<U>(callbackfn: (value: string, index: number, array: string[]) => U, thisArg?: any) => U[]) | (<U>(callbackfn: (value: CheckboxItem, index: number, array: CheckboxItem[]) => U, thisArg?: any) => U[])
Calls a defined callback function on each element of an array, and returns an array that contains the results.
@param callbackfn — A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array.
@param thisArg — An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
This expression is not callable.
Each member of the union type '(<U>(callbackfn: (value: string, index: number, array: string[]) => U, thisArg?: any) => U[]) | (<U>(callbackfn: (value: CheckboxItem, index: number, array: CheckboxItem[]) => U, thisArg?: any) => U[])' has signatures, but none of those signatures are patible with each other.ts(2349)
Kind regards
I've got a simple react ponent where I have input which should be able to bee one of to types. I don't know how to do this, if it's possible. If not what would be a good practices of archiving the same effect?
import * as React from 'react'
interface Checkboxes {
label?: string
items: any //should be either string[] or CheckboxItem[]
}
interface CheckboxItem {
text: string
checked?: boolean
}
export default function Checkboxes(props: Checkboxes) {
const {
label,
items,
} = props
return (
<fieldset className="checkboxes">
{label && <legend>{label}</legend>}
{items.map((item, index) => <label key={index}><input type="checkbox" defaultChecked={item.checked} />{item.text}</label>)}
</fieldset>
)
}
` As i tried union types the following error appears on the map function:
(property) Array<T>.map: (<U>(callbackfn: (value: string, index: number, array: string[]) => U, thisArg?: any) => U[]) | (<U>(callbackfn: (value: CheckboxItem, index: number, array: CheckboxItem[]) => U, thisArg?: any) => U[])
Calls a defined callback function on each element of an array, and returns an array that contains the results.
@param callbackfn — A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array.
@param thisArg — An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
This expression is not callable.
Each member of the union type '(<U>(callbackfn: (value: string, index: number, array: string[]) => U, thisArg?: any) => U[]) | (<U>(callbackfn: (value: CheckboxItem, index: number, array: CheckboxItem[]) => U, thisArg?: any) => U[])' has signatures, but none of those signatures are patible with each other.ts(2349)
Kind regards
Share Improve this question edited Jul 17, 2020 at 7:13 pgalle asked Jul 17, 2020 at 6:59 pgallepgalle 431 silver badge8 bronze badges1 Answer
Reset to default 4
items: any //should be either string[] or CheckboxItem[]
Using a union type.
Example
interface Checkboxes {
label?: string
items: string[] | CheckboxItem[]
}
本文标签: javascriptHow to assign multiple possible types in TypeScriptStack Overflow
版权声明:本文标题:javascript - How to assign multiple possible types in TypeScript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745588166a2665036.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论