gpt4 book ai didi

javascript - 使用AJAX解析页面内容

转载 作者:行者123 更新时间:2023-11-30 16:19:32 24 4
gpt4 key购买 nike

我正在用 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));
},

我想更改此设置以检索我正在访问的页面内容(纯文本)。

我该怎么做?

最佳答案

阅读 AJAX 文档 here .

$.get('http://example.com/my-url', function(result) {
console.log(result);
});

应该可以解决问题。

关于javascript - 使用AJAX解析页面内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34946948/

24 4 0
文章推荐: c# - 从枚举中获取 DescriptionAttribute
文章推荐: c# - 将 ActionResult 呈现为字符串 - 输出顺序不正确
文章推荐: c# - Mvc 本地化数据库值
文章推荐: javascript - 空 "