0
我使用React.js從我的快遞服務器上獲取的評論列表中的URL的GET請求隨機變量,但我的GET網址不斷得到與像隨機變量字符串追加「?_1441474975073」React.js
// Error in Chrome console
GET http://localhost:4000/comments.json?_=1441474975073 404 (Not Found)
/comments.json error Not Found
有人能告訴我爲什麼?
// main.js
React.render(
<CommentBox url="/comments" />,
document.getElementById('reactComment')
);
var CommentBox = React.createClass({
componentDidMount: function() {
$.ajax({
url: this.props.url,
dataType: 'json',
type: 'GET',
cache: false,
success: function(data) {
this.setState({comments: data})
}.bind(this),
error: function(xhr, status, err) {
console.error(this.props.url, status, err.toString());
}.bind(this)
});
},
...
});
// server.js
app.get('/comments', function(req, res) {
Comments.find().exec(function(err, data) {
if (err) throw err;
res.json(JSON.parse(data);
});
});
嘿謝謝你!你是對的。 –