我有一个简单的代码,它为特定路由提供JSON响应。这是我目前的代码:
var express = require('express')
, async = require('async')
, http = require('http')
, mysql = require('mysql');
var app = express();
var connection = mysql.createConnection({
host: 'localhost',
user: '****',
password: "****",
database: 'restaurants'
});
connection.connect();
// all environments
app.set('port', process.env.PORT || 1235);
app.use(express.static(__dirname + '/public/images'));
app.get('/DescriptionSortedRating/',function(request,response){
var name_of_restaurants;
async.series( [
// Get the first table contents
function ( callback ) {
connection.query('SELECT * FROM restaurants ORDER BY restaurantRATING', function(err, rows, fields)
{
console.log('Connection result error '+err);
name_of_restaurants = rows;
callback();
});
}
// Send the response
], function ( error, results ) {
response.json({
'restaurants' : name_of_restaurants
});
} );
} );
http.createServer(app).listen(app.get('port'), function(){
console.log('Express server listening on port ' + app.get('port'));
});
如何制作与上述JSON等效的XML响应?
答案 0 :(得分:38)
您可以使用npm上可用的任意数量的XML库。这是一个使用简单命名的" xml"库:
var xml = require('xml');
response.set('Content-Type', 'text/xml');
response.send(xml(name_of_restaurants));
有关如何将JavaScript对象转换为XML的说明,请参阅该模块的文档。如果您需要以特定XML格式返回的内容,当然还有更多工作要做。
答案 1 :(得分:5)
作为对此的更新,看起来应该使用res.type,因为res.set不会给出相同的结果。
res.type('application/xml');
可以找到更多信息in the API reference。