【发布时间】:2016-01-14 16:17:06
【问题描述】:
如何在不重新加载整个页面的情况下更新 ejs 对象?我通过 jquery 从服务器获取数据,但是我不知道如何在 ejs 模板中将 title 对象从 Express 更新为 NewTitle。顺便说一句,如果有人知道可以帮助快速 Nodejs 初学者的好资源,请提及。
index.ejs:
<!DOCTYPE html>
<html>
<head>
<title><%= title %></title>
<link rel='stylesheet' href='/stylesheets/style.css' />
</head>
<body>
<h1 id="pageTitle"><%= title %></h1>
<p>Welcome to <%= title %></p>
<script type = "text/javascript"
src = "http://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type = "text/javascript" language = "javascript">
$(document).ready(function() {
$(document).ready(function() {
$("#myButton").bind('click', function() {
event.preventDefault();
var data = $('#myEditText').val();
var result = $.post('/yolo', {textBoxValue: data}, function(callback) {
alert("data: "+ callback.title);
$(document).ready(function(){
title = callback.title;
});
});
});
});
</script>
</body>
</html>
index.js:
router.post('/yolo', jsonParser, function(req, res, next) {
res.send('index', { title: 'NewTitle'})
console.log("hello inside index.js method 1");
});
【问题讨论】:
标签: javascript jquery node.js express