已关闭。此问题需要details or clarity。当前不接受答案。
**想要改进此问题?**添加详细信息并通过editing this post阐明问题。
4小时前关门了。
Improve this question
import SearchHeader from '@/Components/Search/SearchHeader'
import React from 'react'
export async function getServerSideProps(context) {
const data = await fetch('https://www.googleapis.com/customsearch/v1?key=AIzaSyAJ_TRxLePr0fo7IPd1mTWyUggQZ-AQ5qk&cx=561f6a3ff44b4403e&q=graphketing').then((res) => res.json());
return {
props: {
result: data
}
}
}
export default function page({result}) {
console.log(result, "result")
return (
<SearchHeader />
)
}
1条答案
按热度按时间hkmswyz61#
我想你也必须等待json: