如何销毁包含以点为键的长字符串的对象

how to destruc an object which includes a long string with dot as the key

我有一个对象,其中包含以点“journey.hintText.journeyTags”为键的字符串。 (由 api 响应返回,我无法修改)。我想像 const {journey.hintText.journeyTags} = content 这样破坏内容对象,但它会抛出错误。请告诉我如何销毁内容对象,非常感谢。

const content = {journey.hintText.journeyTags: 'Please select a tag'}

您可以使用计算属性,但您应该提供这样的名称const { ['journey.hintText.journeyTags']: journeyTags } = content