有一些简单的方法如何在nuxtjs asyncData函数中读取POST请求参数吗?非常感谢。
这是一个例子:
Form.vue:
<template>
<form method="post" action="/clickout" target="_blank">
<input type="hidden" name="id" v-model="item.id" />
<input type="submit" value="submit" />
</form>
</template>
将先前的表单路由提交到以下nuxt页面:
Clickout.vue
async asyncData(context) {
// some way how to get the value of POST param "id"
return { id }
}
答案 0 :(得分:2)
最后,我找到了以下解决方法。无论如何,我不确定这是否是最好的方法:)
我需要添加服务器中间件 server-middleware / postRequestHandler.js
const querystring = require('querystring');
module.exports = function (req, res, next) {
let body = '';
req.on('data', (data) => {
body += data;
});
req.on('end', () => {
req.body = querystring.parse(body) || {};
next();
});
};
nuxt.config.js
serverMiddleware: [
{ path: '/clickout', handler: '~/server-middleware/postRequestHandler.js' },
],
Clickout.vue
async asyncData(context) {
const id = context.req.body.id;
return { id }
}
答案 1 :(得分:1)
我建议不要使用form
元素的默认行为,请尝试按以下方式定义提交处理程序:
<template>
<form @submit="submit">
<input type="hidden" name="id" v-model="item.id" />
<input type="submit" value="submit" />
</form>
</template>
并提交方法如下:
methods:{
submit(){
this.$router.push({ name: 'clickout', params: { id: this.item.id } })
}
}
在目标组件中执行:
async asyncData(context) {
return this.$route.params.id;
}
答案 2 :(得分:0)
在服务器端调用asyncData时,您可以访问用户请求的req和res对象。
export default {
async asyncData ({ req, res }) {
// Please check if you are on the server side before
// using req and res
if (process.server) {
return { host: req.headers.host }
}
return {}
}
}
参考https://nuxtjs.org/guide/async-data/#use-code-req-code-code-res-code-objects
答案 3 :(得分:0)
也许有点晚了,但是我认为这可能会有所帮助。
在您的 .vue 文件中,获取nuxt路由器路由对象:
this.$route
它存储一些有用的信息,例如路径,哈希,参数和查询。
有关this的更多信息。