gpt4 book ai didi

javascript - 动态获取 Youtube 视频

转载 作者:行者123 更新时间:2023-11-30 15:19:36 27 4
gpt4 key购买 nike

我正在尝试使用 react.js 从您的管 channel 获取视频

我尝试使用 PHP CURL,得到了正确的响应。下面的代码显示空白页。请帮忙。

import $ from 'jquery'; 
import React, { Component } from 'react';;

class iLotIndex extends Component {

constructor(props) {
super(props);

this.state = {video: []};
}

VideoList() {
return $.getJSON('https://www.googleapis.com/youtube/v3/search?key=AIzaxxxxxxxxxxxxxxxxxxxxx&channelId=UCexxxxxxxxxxxxxxxx&part=snippet,id&order=date&maxResults=20')
.then((data) => {
this.setState({ video : data.results });
});
}


render() {
this.VideoList().then(function(res){
this.state = {video: res};
});
return (
<div id="layout-content" className="layout-content-wrapper">
<div className="panel-list">
{this.state.video.map((item, i) =>{
return(
<h1>{item.items}</h1>

)
})}
</div>
</div>
)
}
}

最佳答案

this.VideoList() 调用移至 componentDidMount() 而不是 render():

constructor(props) {
super(props);

this.state = {video: []};
this.VideoList = this.VideoList.bind(this);
}

VideoList() {
fetch('https://www.googleapis.com/youtube/v3/search?key=AIzaxxxxxxxxxxxxxxxxxxxxx&channelId=UCexxxxxxxxxxxxxxxx&part=snippet,id&order=date&maxResults=20')
.then(resp => resp.json())
.then((resp) => {
console.log(resp);
//this.setState({video: resp.results});
this.setState({video: resp.items});
console.log(this.state.video);
});


//$.getJSON('https://www.googleapis.com/youtube/v3/search?key=AIzaxxxxxxxxxxxxxxxxxxxxx&channelId=UCexxxxxxxxxxxxxxxx&part=snippet,id&order=date&maxResults=20')
//.then((data) => {
//this.setState({ video : data.results });
//});
}

componentDidMount() {
this.VideoList();
}

render() {

return (
<div id="layout-content" className="layout-content-wrapper">
<div className="panel-list">
{this.state.video.map((item, i) =>{
console.log(item);
return(
<h1>{item.items}</h1>

)
})}
</div>
</div>
)
}

如果它还不能正常工作,请在这里发布一些错误,谢谢!

关于javascript - 动态获取 Youtube 视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43936728/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com