由于我是NextJS的新手,所以我对动态路由有些困惑。我希望这样的方式是,如果有人单击我页面的标题,它将带他们到一个包含相同标题和正文的新页面。为了实现此目的,我可以进行哪些更改?我签出了很多资源,但它们都是从a到b,并且数据是硬编码的。
import React from 'react';
import axios from 'axios'
import Link from 'next/link';
class Abc extends React.Component{
state = {
title: '',
body: '',
posts: []
};
componentDidMount=()=>{
this.getBlogPost();
};
displayBody=(posts: Array<any>)=>{
if(!posts.length)
return null;
return posts.map((post,index)=>(
<div key={index}>
<Link href={`/post?title=${this.state.title}`} ><a>
{post.title}</a></Link>
<h2>{post.title}</h2>
<p>{post.body}</p>
</div>
));
};
render() {
console.log('state', this.state);
return (
<div>
<h2>Welcome to my app</h2>
<div className="blog">
{this.displayBody(this.state.posts)}
</div>
</div>
);
}
}
export default Abc
答案 0 :(得分:0)
如果有人单击我的帖子标题,则会将他们带到新页面 标题和正文相同
您是说是根据用户单击的参数从MongoDB中获取标题和正文吗?
如果是,由于您使用的是ExpressJS,因此可以在Github上查看他们的示例:
server.get('/posts/:id', (req, res) => {
return app.render(req, res, '/posts', { id: req.params.id })
})
有一个API /posts/:id
,基本上可以满足您要实现的目标。想法是从用户的请求中获取唯一的参数,然后将此参数转发到您的特定页面,然后调用API根据用户的参数提取到MongoDB。
更新答案
这是pages/posts
的样子:
import React, { Component } from 'react'
export default class extends Component {
static getInitialProps({ query: { id, title, body } }) {
return { postId: id, title, body }
}
render() {
return (
<div>
<h1>My blog post #{this.props.postId}</h1>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p>
</div>
)
}
}
您需要做的是添加getInitialProps
函数,该函数从服务器发送的查询中检索ID。
第二次更新答案
然后,您可以使用next/link
对象网址,如下所示:
<Link href={{ pathname: `/post?title=${this.state.title}`, query: { title: this.state.title, body: this.state.body } }}>
<a>{post.title}</a>
</Link>
如果该示例不起作用,则需要将其与withRouter
中的next/router
组合以从Router对象访问您的查询。
完整示例:here