3 года назад я мог сделать несколько res.send в express.js.
даже напишите setTimeout для отображения живого выхода.
response.send('<script class="jsbin" src="http://code.jquery.com/jquery-1.7.1.min.js"></script>');
response.send('<html><body><input id="text_box" /><button>submit</button></body></html>');
var initJs = function() {
$('.button').click(function() {
$.post('/input', { input: $('#text_box').val() }, function() { alert('has send');});
});
}
response.send('<script>' + initJs + '</script>');
Теперь он бросит:
Error: Can't set headers after they are sent
Я знаю, что nodejs и express обновлены. почему бы не сделать это сейчас? любая другая идея?
Нашел решение, но "res.write" не находится в ссылке api http://expressjs.com/4x/api.html...
: S