本文介绍了JS使用以字符串开头的键获取对象的值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否有快速获取以某个字符串开头的键值?

Is there a quick way to get the value of a key starting with a certain string?

示例:

var obj = {
  "key123" : 1,
  "anotherkey" : 2
}

obj['key1'] // would return 1
obj['ano'] // would return 2

谢谢

推荐答案

您可以创建帮助函数

function findValueByPrefix(object, prefix) {
  for (var property in object) {
    if (object.hasOwnProperty(property) && 
       property.toString().startsWith(prefix)) {
       return object[property];
    }
  }
}

findValueByPrefix(obj, "key1");

正如Kenney评论的那样,上述函数将返回第一场比赛。

As Kenney commented, the above function will return first match.

这篇关于JS使用以字符串开头的键获取对象的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 21:05