我正在React中开发一个项目,我需要进行一次AJAX调用来获取页面的来源。
我不熟悉AJAX,所以我看了一下:https://facebook.github.io/react/tips/initial-ajax.html
他们使用以下方法从Github获取要点。
componentDidMount: function() {
$.get(this.props.source, function(result) {
var lastGist = result[0];
if (this.isMounted()) {
this.setState({
username: lastGist.owner.login,
lastGistUrl: lastGist.html_url
});
}
}.bind(this));
},
我想更改此内容以检索我正在访问的页面内容(以纯文本格式)。
我怎么能这样做?
答案 0 :(得分:2)
阅读AJAX here的文档。
否则
$.get('http://example.com/my-url', function(result) {
console.log(result);
});
应该这样做。