我在转换表中的多个值时遇到了一个奇怪的问题。
我有这样table
的数据:
+-------------+--------------+-------------+
| id | name | category_id |
+=============+==============+=============+
| 1 | Horse | 5 |
+-------------+--------------+-------------+
| 2 | Cow | 5 |
+-------------+--------------+-------------+
| 3 | Pig | 2 |
+-------------+--------------+-------------+
| 4 | Chicken | 3 |
+-------------+--------------+-------------+
然后我category_id
像这样找到:
# find the item category id
items_cat_id = etl.values(table, 'category_id')
然后我像这样循环数据,这样我就可以将上面的 category_id 转换为目标类别 id:
for item in items_cat_id:
"""
fetch target mongo collection.
source_name is the category name to look up in the target,
if we get a match convert the table category_id value to
the mongo id.
"""
target_category_id = target_db.collection.find_one({ 'name': source_name })
converted_table = etl.convert(table, 'category_id',
lambda _: target_category_id.get('_id'),
where=lambda x: x.category_id == item)
我似乎只得到这个:
+-------------+--------------+-----------------------------+
| id | name | category_id |
+=============+==============+=============================+
| 1 | Horse | 5 |
+-------------+--------------+-----------------------------+
| 2 | Cow | 5 |
+-------------+--------------+-----------------------------+
| 3 | Pig | 2 |
+-------------+--------------+-----------------------------+
| 4 | Chicken | QnicP3f4njL54HRqu |
+-------------+--------------+-----------------------------+
什么时候应该
+-------------+--------------+-----------------------------+
| id | name | category_id |
+=============+==============+=============================+
| 1 | Horse | 5 |
+-------------+--------------+-----------------------------+
| 2 | Cow | 5 |
+-------------+--------------+-----------------------------+
| 3 | Pig | yrDku5Yqkc2MKZZkD |
+-------------+--------------+-----------------------------+
| 4 | Chicken | QnicP3f4njL54HRqu |
+-------------+--------------+-----------------------------+
有什么建议么?