URL GET请求中的React.js随机变量

时间:2015-09-05 17:54:38

标签: javascript ajax get reactjs fetch

我使用React.js从我的Express服务器获取评论列表,但我的GET URL不断附加随机变量字符串,如"?_ 1441474975073"

x = pd.merge(activated_at_df, spend_df, on='id')
x

有人可以告诉我为什么吗?

// Error in Chrome console

GET http://localhost:4000/comments.json?_=1441474975073 404 (Not Found)
/comments.json error Not Found

1 个答案:

答案 0 :(得分:0)

我还没有留下评论,所以我只会在这里回答。

您已设置cache: false,因此jQuery会附加时间戳,以便始终调用JSON的新副本。

然而,这不太可能是404错误的原因。