简体   繁体   English

数组对象是对象数组的子集

[英]Is array objects subset of array of objects

I'm trying to write a function to check if the array of objects is a subset of another array of objects and I want it to return a boolean.我正在尝试编写 function 来检查对象数组是否是另一个对象数组的子集,并且我希望它返回 boolean。

Here's what I have so far:这是我到目前为止所拥有的:

 var arr1 = [ { answer: "dispersed", question: "where_is_your_flare_located" }, { answer: "continuous", question: "what_frequnecy_of_measurement_do_i_require_to_assess_methane_emissions" } ]; var arr2 = [ { question: 'where_is_your_flare_located', answer: 'dispersed' }, { question: 'what_frequnecy_of_measurement_do_i_require_to_assess_methane_emissions', answer: 'periodic' }, { question: 'how_long_is_the_flare_expected_to_be_in_operation', answer: 'n_a' }, { question: 'am_i_managing_an_existing_flare_or_planning_to_install_a_new_one', answer: 'n_a' }, { question: 'do_i_have_access_to_assistance_gases', answer: '' }, { question: 'do_i_have_access_to_purge_gas', answer: '' }, ]; var compare = arr2.filter(function(o) { var resultQuestion = o.question; var resultAnswer = o.question; return arr1.some(function(i) { var filterQuestion = i.question; var filterAnswer = i.question; return ((filterQuestion === resultQuestion) && (resultAnswer === filterAnswer)); }); }); console.log(compare)

I don't understand what I'm doing wrong.我不明白我做错了什么。 I will appreciate any help or explanation.我将不胜感激任何帮助或解释。

This is simply a case of seeing if every element in arr1 exists in arr2这只是查看arr1中的every元素是否存在于arr2中的情况

 var arr1 = [ { answer: "dispersed", question: "where_is_your_flare_located" }, { answer: "continuous", question: "what_frequnecy_of_measurement_do_i_require_to_assess_methane_emissions" } // comment the above and uncomment below to return true //{ answer: "periodic", question: "what_frequnecy_of_measurement_do_i_require_to_assess_methane_emissions" } ]; var arr2 = [ { question: 'where_is_your_flare_located', answer: 'dispersed' }, { question: 'what_frequnecy_of_measurement_do_i_require_to_assess_methane_emissions', answer: 'periodic' }, { question: 'how_long_is_the_flare_expected_to_be_in_operation', answer: 'n_a' }, { question: 'am_i_managing_an_existing_flare_or_planning_to_install_a_new_one', answer: 'n_a' }, { question: 'do_i_have_access_to_assistance_gases', answer: '' }, { question: 'do_i_have_access_to_purge_gas', answer: '' }, ]; const isSubset = arr1.every(a1 => arr2.find(a2 => a1.answer == a2.answer && a1.question == a2.question)); console.log(isSubset);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM