2

我需要将数据帧从后端发送到前端,因此首先需要将其转换为 JSON 可序列化的对象或直接转换为 JSON。问题是我有一些没有唯一列的数据框。我已经查看了orient参数,to_json()to_dict()方法,from_dict()但仍然无法让它工作......

目标是能够将 df 转换为 json 可序列化的内容,然后返回其初始自我。

我也很难使用 pd.read_clipboard 复制粘贴它,所以我已经包含了一个示例 df 导致问题作为图像(对不起!)。

在此处输入图像描述

4

1 回答 1

4

我找到了让它工作的方法。

这是一个简单的可重现示例:

import pandas as pd
import json

# create simple df with two identical named columns
df = pd.DataFrame([[1, 2, 3, 4]], columns=['col1', 'col2', 'col1', 'col2'])

# orient='split' conservers order
jsonized_df = df.to_json(orient='split')

# suppose the df is part of a bigger data structure being sent to another app
random_dict = {'foo': 'bar'}
all_data = [random_dict, jsonized_df]
data_to_frontend = json.dumps(jsonized_df)

# then from the other app
all_data = json.loads(data_to_frontend)
final_df = pd.read_json(all_data[1], orient='split') #important to remember to include the orient parameter when reading the json df as well!

final_df 将与 initial_df 相同,并保留顺序!

于 2018-04-27T13:13:34.770 回答