如何从nextjs中间件函数获取请求数据到页面组件?

dxpyg8gm  于 2022-11-29  发布在  其他
关注(0)|答案(1)|浏览(192)

我在nextjs中成功地编写了一个中间件函数

import type { NextRequest } from 'next/server';
import { NextResponse } from 'next/server'

export function middleware(req: NextRequest) {
    const { ip, geo } = req
}

export const config = {
    matcher: '/'
}

在这个中间件函数中,我得到了geo对象和ip字符串。在geo对象中,它有countrycitylatitudelongituderegion字段。现在我必须把这些数据放到我的主页组件中。

import type { NextPage, GetServerSideProps } from "next"

const Home: NextPage = () => {
  return (
    <div>
      dfd
    </div>
  );
};

export default Home;

export const getServerSideProps: GetServerSideProps = async (context) => {
  console.log(context);
  return { props: {} }
}

我如何在我的页面组件中获得那些中间件数据,如ipgeo

r7s23pms

r7s23pms1#

@Md Ali如果您在vercel中部署应用程序,您将获得IP和地理位置。

相关问题