繁体   English   中英

反应 typescript - 元素隐式具有“任何”类型,因为使用国家标志图标时,“字符串”类型的表达式不能用于索引类型

[英]react typescript - Element implicitly has an 'any' type because expression of type 'string' can't be used to index type when using country-flag-icons

应用程序.tsx

import "./styles.css";
import Person from "./Person";

export default function App() {
  return (
    <div className="App">
      <Person flagNationCode="HK" />
    </div>
  );
}

个人.tsx

import Flags from "country-flag-icons/react/3x2";

const Person = ({ flagNationCode }: { flagNationCode: string }) => {
  const Flag = Flags[flagNationCode];
  return (
    <div className="person-footer">
      <div className="info">
        <div className="label">{flagNationCode}</div>
        <div className="value">
          <Flag />
        </div>
      </div>
    </div>
  );
};

export default Person;

在行

const Flag = Flags[flagNationCode];

, typescript 在这里抛出错误

Element implicitly has an 'any' type because expression of type 'string' can't be used to index type 'typeof import("/sandbox/node_modules/country-flag-icons/react/3x2/index")'.
  No index signature with a parameter of type 'string' was found on type 'typeof import("/sandbox/node_modules/country-flag-icons/react/3x2/index")'.ts(7053)

有可能修复吗?

代码沙盒
https://codesandbox.io/s/react-typescript-forked-j05w6x?file=/src/Person.tsx

您需要确保flagNationCode是 Flag 的键而不是任何字符串。 为此,您可以将 flagNationCode 定义为keyof typeof Flags

import Flags from "country-flag-icons/react/3x2";

const Person = ({ flagNationCode }: { flagNationCode: keyof typeof Flags }) => {
  const Flag = Flags[flagNationCode];
  return (
    <div className="person-footer">
      <div className="info">
        <div className="label">{flagNationCode}</div>
        <div className="value">
          <Flag />
        </div>
      </div>
    </div>
  );
};

export default Person;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM