最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

jquery - Get value from dictionary in JavaScript by key - Stack Overflow

programmeradmin2浏览0评论

In JavaScript script I have created following dictionary.

var dictionary =[];
$(function () {
  dictionary.push({
    key: @item.Key.ToShortDateString().ToString(),
    value: @Html.Raw(JsonConvert.SerializeObject(item.Value)),
  });
  alert(dictionary['2017-09-19']);
});

In alert it shows me undefined. How can I read value from this dictionary?

In JavaScript script I have created following dictionary.

var dictionary =[];
$(function () {
  dictionary.push({
    key: @item.Key.ToShortDateString().ToString(),
    value: @Html.Raw(JsonConvert.SerializeObject(item.Value)),
  });
  alert(dictionary['2017-09-19']);
});

In alert it shows me undefined. How can I read value from this dictionary?

Share Improve this question edited Sep 10, 2017 at 17:20 Shiladitya 12.2k17 gold badges28 silver badges42 bronze badges asked Sep 10, 2017 at 17:17 maciejkamaciejka 9483 gold badges19 silver badges45 bronze badges 3
  • date 2017-09-19 is added eariler as a key. – maciejka Commented Sep 10, 2017 at 17:18
  • 1 You have an array, it's not a dictionary, and it doesn't have named keys, but indexes. Your array contains objects though. It seems you wanted an object instead of the array – adeneo Commented Sep 10, 2017 at 17:19
  • It also turned out that key must be saved using @Html.Raw(JsonConvert.SerializeObject to read value by key as a date saved in string. – maciejka Commented Sep 10, 2017 at 18:23
Add a ment  | 

2 Answers 2

Reset to default 4

Rather than using an array use an object

$(function () {
  var dictionary = {};
  dictionary[@item.Key.ToShortDateString().ToString()] = @Html.Raw(JsonConvert.SerializeObject(item.Value));
  alert(dictionary['2017-09-19']);
});

The variable dictionary is an array which consists of objects. If you want to access you need to access by index.

DEMO

 var dictionary = [];
 dictionary.push({
    key: '2017-09-19',
    value: 'test',
  });
var result = dictionary.filter(function(element) {
    return element.key == '2017-09-19';
});

if (result.length > 0) {
    // we have found a corresponding element
     console.log(result[0].value);
}

发布评论

评论列表(0)

  1. 暂无评论