質問編集履歴
1
コードの追記。
test
CHANGED
File without changes
|
test
CHANGED
@@ -70,4 +70,18 @@
|
|
70
70
|
|
71
71
|
const name_1_taxInPrice = noName[exampleBarcode].taxInPrice;
|
72
72
|
|
73
|
+
|
74
|
+
|
75
|
+
//lodashのサンプルコード、カテゴリー毎に商品を分ける。
|
76
|
+
|
77
|
+
const eachCategoryItemsObj = {'drink':[], 'food':[]};
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
_.forEach(noName, (itemObj) => {
|
82
|
+
|
83
|
+
eachCategoryItemsObj[itemObj.category].push(itemObj);
|
84
|
+
|
85
|
+
});
|
86
|
+
|
73
87
|
```
|