如何修复“对象可能未定义”?

时间:2019-07-31 19:04:53

标签: javascript reactjs graphql apollo

我在打字稿文件中有一个函数,一切正常,只是即使经过if检查仍然存在:“对象可能是'undefined'”。

我在其他文件中有类似的代码段,但是没有一个给我同样的问题。

功能:

renderCities = (countries: Country[], countryId: string) => {
    if (countryId === 'DEFAULT') {
      return <option>Select Country First</option>;
    } else {
      if (countries) {
        return countries //error here "Object is possibly 'undefined'"
          .find((country: Country) => country.id === parseInt(countryId))
          .cities.map((city: City) => (
            <option key={`city-${city.id}`} value={city.id}>
              {city.name}
            </option>
          ));
      }
    }
  };

接口:

interface City {
  name: string;
  id: number;
}

interface Country {
  name: string;
  id: number;
  cities: City[];
}

另一个类似的代码:

<Query<Data> query={GET_COUNTRIES_CITIES}>
        {({ error, loading, data }) => {
          if (loading) {
            return <h1>Loading...</h1>;
          } else if (error) {
            throw new Error('Error');
          } else {
            if (data) {
              return <TeacherForm countries={data.countries} />;
              //there used to be the same error in "data.countries", but the 
              //if (data) fixed it.
            }
          }
        }}
      </Query>

我希望if(国家/地区)能够消除对象未定义的可能性,但事实并非如此。

1 个答案:

答案 0 :(得分:1)

您可以省略if子句if (countries) { ...,这不是必需的。

这是下一个无法定义的表达式:

countries.find((country: Country) => country.id === parseInt(countryId))

,它返回Country | undefined。这里必须处理undefined情况。