gpt4 book ai didi

javascript - KeystoneJS post 请求不起作用

转载 作者:行者123 更新时间:2023-12-03 04:40:39 24 4
gpt4 key购买 nike

这是我的观点

form.contact-form(method="post").col-md-12
input(type='hidden', name='action', value='notes.edit' + data.post.id)
.form-group.col-md-12
.form-group.col-md-12
label.text-center Title
input.form-control.input-box(type='text', name='title', value=data.post.title, placeholder='Title' required)
.form-group.col-md-12
label.text-center Content *
.row
.col-md-6
input.form-control.input-box(type='text', name='briefcontent', value=data.post.content.brief, placeholder='brief content')
.col-md-6
input.form-control.input-box(type='text', name='extendedcontent', value=data.post.content.extended placeholder='extended content')
button(type='submit').btn.btn-success Edit Notes
form.contact-form(method="post").col-md-12

这是我的发帖路线

view.on('post', { action: 'notes.edit'}, function(next) {
console.log('edit notes')
res.redirect('/')

});

这是我的路由绑定(bind)

// Setup Route Bindings
exports = module.exports = function (app) {
// Views
app.all('/', routes.views.index);
app.get('/blog/:category?', routes.views.blog);
app.get('/blog/post/:post', routes.views.post);
app.get('/gallery', routes.views.gallery);
app.get('/registration', routes.views.registration);
app.post('/registration', routes.views.registration);
app.all('/signin', routes.views.signin);
app.all('/signout', routes.views.signout);
app.all('/contact', routes.views.contact);
app.all('/addnotes', routes.views.addnotes);
app.all('/editnotes/:post', routes.views.editnotes);
app.all('/editnotes', routes.views.editnotes);

post请求似乎根本不起作用。我尝试使用 console.log 来发送请求,但没有出现在终端中。

最佳答案

您要将 data.post.id 附加到输入的 value 属性中。因此,输入值将变为不是 notes.edit 的值。您的 POST 路由需要一个 action 值仅为 notes.edit 的请求,因此该路由不会处理该 POST 请求。

在你的 Pug 模板中:

 input(type='hidden', name='action', value='notes.edit')

编辑:

您的表单中有第二个表单。这或许也与此有一定关系。尝试删除它。

关于javascript - KeystoneJS post 请求不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43102691/

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