我正在尝试使用 typescript 4.1.2在我的React原生应用中配置react-i18 next 11.8.2:
i18n.use(initReactI18next).init({
resources: {
en,
es,
},
lng: 'es',
fallbackLng: 'es',
interpolation: {
escapeValue: false,
},
});
具有两个资源文件(en,es)。
但是我在使用useTranslation钩子的TFunction接口中遇到了一个打字错误:
const {t, i18n} = useTranslation(['SelectLanguage']);]
<StyledLabel>{t('SelectLanguage:title')}</StyledLabel>
错误:
No overload matches this call.
Overload 1 of 2, '(props: Pick<Pick<TextProps & RefAttributes<Text>, "key" | "ref" | "style" | "onLayout" | "testID" | "nativeID" | "accessible" | "accessibilityActions" | ... 35 more ... | "dataDetectorType"> & Partial<...>, "key" | ... 42 more ... | "dataDetectorType"> & { ...; } & { ...; } & { ...; }): ReactElement<...>', gave the following error.
Type 'TFunctionResult' is not assignable to type 'string | number | TextElement | ChildElement[] | (string & {}) | (string & ReactElement<any, string | ((props: any) => ReactElement<any, string | ... | (new (props: any) => Component<any, any, any>)> | null) | (new (props: any) => Component<...>)>) | ... 20 more ... | undefined'.
Type 'null' is not assignable to type 'string | number | TextElement | ChildElement[] | (string & {}) | (string & ReactElement<any, string | ((props: any) => ReactElement<any, string | ... | (new (props: any) => Component<any, any, any>)> | null) | (new (props: any) => Component<...>)>) | ... 20 more ... | undefined'.
Overload 2 of 2, '(props: StyledComponentPropsWithAs<typeof Text, any, {}, never>): ReactElement<StyledComponentPropsWithAs<typeof Text, any, {}, never>, string | ... 1 more ... | (new (props: any) => Component<...>)>', gave the following error.
Type 'TFunctionResult' is not assignable to type 'string | number | TextElement | ChildElement[] | (string & {}) | (string & ReactElement<any, string | ((props: any) => ReactElement<any, string | ... | (new (props: any) => Component<any, any, any>)> | null) | (new (props: any) => Component<...>)>) | ... 20 more ... | undefined'.
Type 'null' is not assignable to type 'string | number | TextElement | ChildElement[] | (string & {}) | (string & ReactElement<any, string | ((props: any) => ReactElement<any, string | ... | (new (props: any) => Component<any, any, any>)> | null) | (new (props: any) => Component<...>)>) | ... 20 more ... | undefined'.ts(2769)
text.component.d.ts(15, 5): The expected type comes from property 'children' which is declared here on type 'IntrinsicAttributes & Pick<Pick<TextProps & RefAttributes<Text>, "key" | "ref" | "style" | "onLayout" | "testID" | ... 38 more ... | "dataDetectorType"> & Partial<...>, "key" | ... 42 more ... | "dataDetectorType"> & { ...; } & { ...; } & { ...; }'
text.component.d.ts(15, 5): The expected type comes from property 'children' which is declared here on type 'IntrinsicAttributes & Pick<Pick<TextProps & RefAttributes<Text>, "key" | "ref" | "style" | "onLayout" | "testID" | ... 38 more ... | "dataDetectorType"> & Partial<...>, "key" | ... 42 more ... | "dataDetectorType"> & { ...; } & { ...; } & { ...; }'
我可以通过如下解析i18 n翻译的结果来解决这个错误:
<StyledLabel>{t<string>('SelectLanguage:title')}</StyledLabel>
您知道为什么会发生这种情况吗?我认为可能是StyledLabel prop ,它只是@ui-kitten/components Text的样式化组件
import styled from 'styled-components/native';
import {Text} from '@ui-kitten/components';
export const StyledLabel = styled(Text)`
margin-bottom: 5px;
`;
UI Kitten文本组件:
export declare class Text extends React.Component<TextProps> {
render(): React.ReactElement<RNTextProps>;
}
export {};
4条答案
按热度按时间h5qlskok1#
在错误消息中,您可以找到问题所在。
类型“TFunctionResult”不可分配给类型“string|数|文本元素|子元素[]|(字符串& {})|(字符串和React元素〈任何,字符串
TFunctionResult
仅接受字符串解决方案:您需要始终发送一个字符串并将其作为string引用
第二种溶液
rdrgkggo2#
创建React-i18 next.d.ts
u5rb5r593#
另一种解决方案是使用withTranslation
b1uwtaje4#
在我的例子中,我使用的是^18版本的React类型。如果您使用的是React 17,请使用正确的版本: