如何定位格式为 "XYZ-ABC" 的 api 返回的对象的 属性?

How to target a property of an object returned by an api that is the format "XYZ-ABC"?

我正在尝试获取由 api(pokeapi.co) 返回的 img,它是对象 'official-artwork' 的 属性。我收到以下错误:

 UnhandledPromiseRejectionWarning: ReferenceError: artwork is not defined

我不确定如何从这样命名的对象中获取结果,或者是否可以从这些对象中检索信息。

我猜您正在使用 data.official-artwork(点表示法)从数据中检索 official-artwork 属性。只需替换为 data["official-artwork"](括号表示法)

您可以阅读有关 属性 访问器的更多信息 here