这是交易:我在HTML页面中有一个iframe表单。表格提交成功后,我需要将整个页面重定向到感谢页面。
我有类似的东西:
ContactFormController.prototype.postIndependentForm = function(req, res) {
//**
* content
*/
return res.redirect(301, self.config.redirectTo);
};
但是,这只会重定向iframe内容。我需要类似于window.top.location.href='someUrl'
的东西,但是应用于nodejs。
任何形式的帮助将不胜感激。 (我可能没想到一个合适的解决方案)。
谢谢!