将JSON文件导入Firebase错误

时间:2016-03-02 15:23:47

标签: json firebase

我一直认为将我的JSON文件上传/导入Firebase时出错。我最初有一个excel电子表格,我保存为CSV文件,然后我使用了CSV到JSON转换器。

我使用几个在线工具验证了JSON文件(扩展名为.json)。

虽然,我仍然收到错误。

以下是我的JSON示例:

{
    "Rk": 1,
    "Tm": "SEA",
    "H/A": "H",
    "DOW": "Sun",
    "Opp": "CLE",
    "QB": "Russell Wilson",
    "Grade": "BLUE",
    "Def mu pts": 4,
    "Inj status": 0,
    "Notes": "Got to wonder if not having a proven power RB under center will negatively impact Wilson's production.",
    "TFS $50K": "$8,300",
    "Init sal": "$8,300",
    "Var": "$0",
    "WC": 0
}

1 个答案:

答案 0 :(得分:10)

问题是你的关键..

Firebase密钥必须为:

  

UTF-8编码,不能包含。 $#[] /或ASCII控制字符   0-31或127

您的$ 50k密钥和H / A是问题。

相关问题