gpt4 book ai didi

angular - Ionic 3 - 想要将对象数组转换为 Controller 中的字符串数组

转载 作者:搜寻专家 更新时间:2023-10-30 22:04:45 25 4
gpt4 key购买 nike

在 Ionic 3 中,我在 Controller 中获取一组对象。但这对我没有用。所以我想将对象数组转换为字符串数组。我在 Controller 中获取以下数据。

   this.users = [{"id":1,"name":"US"},{"id":2,"name":"UK"}]

但我想要下面的结果:

    this.users = ["US", "UK"];

最佳答案

你可以像这样在一行中完成:

this.users = this.users.map(user => user.name);

关于angular - Ionic 3 - 想要将对象数组转换为 Controller 中的字符串数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47714044/

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