我的C#代码后面定义了一个对象
public List<Dictionary<string, string>> attributesList
{
get;
set;
}
现在我需要从Jquery填充这个对象 也就是说,在我的Jquery文件中,我得到了我需要填写此对象的某些值。 我坚持如何从以下代码
创建JSON对象selectedAttributes.each(function (key, value) {
var attributeName = value.attributes.title.value;
var attributeValue = $('#' + attributeName + ' option:selected').text();
});
可以提供给attributesList 我需要在属性列表对象
中放置(attributeName,attributeValue)对我知道在提出这个问题时我不够清楚,但如果需要任何信息,请发表评论,我几乎会立即回复。
答案 0 :(得分:1)
字典只是JS中的一个对象。您可以通过它的名称来解决字典中的项目。
dic['name'] = 'value'; // valid
dic.name = 'value'; // also valid
var attrName = 'name';
dic[attrName] ='value'; // also valid
这应该足以让您完成任务。