将数据转换为json格式

时间:2019-05-16 11:19:21

标签: json

此输出来自json无效,我想将其转换为有效json数据。有人可以帮忙吗?

{“ uniq_id”:“ f29fd9215f1dd18ea5b20db5e523833a”,“ crawl_timestamp”:“ 2019-05-16 09:26:02 +0000”,“ item_name”:“花园酒吧”,“ item_description”:“包括菠菜,西红柿,黄瓜,香脆洋葱,甜椒,西兰花,胡萝卜,培根,切达干酪,新鲜的油煎面包块和薄脆饼干,搭配牧场,蓝纹奶酪,意大利香草香醋和蜂蜜芥末酱,包括单独包装的汤匙和钳子。 “,” item_price“:99.99,” item_category“:”创建您自己的花园吧“,” restaurant_name“:” Ruby Tuesday“,” review_count“:” 62“,” rating“:” 4.4“,” uniq_id_for_billing“:” c8c1abe8b9cc815400a8d7c2795a580c“} {” uniq_id“:” 2294c889c01c76090287db5b6d9376e1“,” crawl_timestamp“:” 2019-05-16 09:26:02 +0000“,” item_name“:” Premium Garden Bar“,” ach“,”,item_description卷心莴苣,西红柿,黄瓜,香脆洋葱,甜椒,西兰花,胡萝卜,菠菜,波多贝罗蘑菇,黑橄榄,碎培根,切达干酪,蓝纹奶酪,新鲜面包ns和饼干。搭配蔬菜罗勒通心粉沙拉和牧场,蓝纹奶酪,意大利香草油醋汁和蜂蜜芥末酱。包括单独包装的汤匙和钳子。“,” item_price“:119.99,” item_category“:”创建您自己的花园吧“,” restaurant_name“:” Ruby Tuesday“,” review_count“:” 62“,”评分“:” 4.4 “,” uniq_id_for_billing“:” c8c1abe8b9cc815400a8d7c2795a580c“} {” uniq_id“:” 6b2a8448a76890c2d2cc51df114ea237“,” crawl_timestamp“:”“ 2019-05-16 09:26:02 +0000”,“ item_name :“ NA”,“ item_price”:29.99,“ item_category”:“创建您自己的花园吧”,“ restaurant_name”:“ Ruby Tuesday”,“ review_count”:“ 62”,“ rating”:“ 4.4”,“ uniq_id_for_billing “:” c8c1abe8b9cc815400a8d7c2795a580c“}

1 个答案:

答案 0 :(得分:0)

问题是您要提供一个数组,但不告诉JSON它是一个数组,请在JSON周围以及逗号之间插入每个JSON元素之间贴上[]。

[{
"uniq_id": "f29fd9215f1dd18ea5b20db5e523833a",
"crawl_timestamp": "2019-05-16 09:26:02 +0000",
"item_name": "Garden Bar",
"item_description": "Includes baby spinach, tomatoes, cucumbers, crispy onions, bell peppers, broccoli, carrots, bacon, shredded cheddar cheese, freshly-made croutons, and crackers. Served with ranch, blue cheese, Italian herb vinaigrette, and honey mustard dressings. Includes individually wrapped spoons and tongs.",
"item_price": 99.99,
"item_category": "Create Your Own Garden Bar",
"restaurant_name": "Ruby Tuesday",
"review_count": "62",
"rating": "4.4",
"uniq_id_for_billing": "c8c1abe8b9cc815400a8d7c2795a580c"
}, {
"uniq_id": "2294c889c01c76090287db5b6d9376e1",
"crawl_timestamp": "2019-05-16 09:26:02 +0000",
"item_name": "Premium Garden Bar",
"item_description": "Includes baby spinach, iceberg lettuce, tomatoes, cucumbers, crispy onions, bell peppers, broccoli, carrots, baby spinach, baby portobello mushrooms, black olives, crumbled bacon, cheddar cheese, blue cheese, freshly-made croutons, and crackers. Served with veggie basil pasta salad and ranch, blue cheese, Italian herb vinaigrette & honey mustard dressings. Includes individually wrapped spoons and tongs.",
"item_price": 119.99,
"item_category": "Create Your Own Garden Bar",
"restaurant_name": "Ruby Tuesday",
"review_count": "62",
"rating": "4.4",
"uniq_id_for_billing": "c8c1abe8b9cc815400a8d7c2795a580c"
}, {
"uniq_id": "6b2a8448a76890c2d2cc51df114ea237",
"crawl_timestamp": "2019-05-16 09:26:02 +0000",
"item_name": "Grilled Chicken",
"item_description": "NA",
"item_price": 29.99,
"item_category": "Create Your Own Garden Bar",
"restaurant_name": "Ruby Tuesday",
"review_count": "62",
"rating": "4.4",
"uniq_id_for_billing": "c8c1abe8b9cc815400a8d7c2795a580c"
}]