关于使用 JSON 在客户端和服务器之间传输数据的一个小疑问。这是一个将数据发送到客户端的 node.js 服务器脚本。
下面的服务器脚本是否已经以 json 格式发送数据,还是我必须在脚本中进行一些更改?基本上我想在服务器和客户端之间以 json 格式发送数据。
app.get('/playground', function(req, res) {
AM.getAllCategories( function(e, categories){
res.render('playground', { title : 'Categories List', cats : categories });
}
AM.getAllCategories queries mongodb and returns something like this
[{"name":"Electronics"},{"name":"Real Estate"}]
//form( method="post")#sender-form.form-inline.well.span6
form( method="post")#category-form
h1
p#sub1.subheading Select a category
//hr
div.container(style='margin:20px')
table.table.table-bordered.table-striped
thead
tr
//th(style='width:40px') #
th(style='width:180px') Name
th(style='width:200px') Location
th(style='width:180px') Username
//th Account Created
tbody
- for (var i = 0; i < cats.length; i++)
tr
td
a(href='/home/')= cats[i].name