我在我的项目中使用Express.js。当我提交表单时,会执行一个函数,我想要的是在函数末尾,它会将页面从索引更改为结果。
<template lang="pug">
input( placeholder='Try "Android"' )
</template>
我希望它在这里重定向:
io.on('connection', function(socket){
socket.on('query', function(qCity,qState,qLowPrice,qHighPrice, req, res){
我已经阅读了一些关于使用中间件的帖子,但仍然不确定它是我想要的。
答案 0 :(得分:6)
使用res.redirect
io.on('connection', function(socket){
socket.on('query', function(qCity,qState,qLowPrice,qHighPrice, req, res){
res.redirect('http://yourdomain.com/result')
});
答案 1 :(得分:3)
你应该能够像这样在表达中使用重定向:
res.redirect('your/path.html');