gpt4 book ai didi

javascript - 使用带连字符的键解构对象

转载 作者:行者123 更新时间:2023-11-29 10:30:16 24 4
gpt4 key购买 nike

在我的应用程序中,我正在将一些分页元数据从我的响应 header 添加到我的商店。其中一个键的名称是 Per Page,在对象字面量中转换为 per-page

是否有可能解构带连字符的键?我试过将它变成一个计算属性,用驼峰式大小写,然后把它变成一个普通字符串,但无济于事。有什么建议吗?

const { page, [per-page], total } = response.headers;

const { page, perPage, total } = response.headers;

const { page, "per-page", total } = response.headers;

最佳答案

const { page, "per-page": perPage, total } = response.headers;

这会将键为“per-page”的值写入 perPage 常量。

关于javascript - 使用带连字符的键解构对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48106192/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com