Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
605 views
in Technique[技术] by (71.8m points)

node.js - Serving multiple content types

I'm creating a website and API with Express, I want to serve multiple content types (JSON, XML, HTML) on the same paths. In Express is there a better way to write the following:

// Serve JSON requests
app.get('/items/', function(req, res, next){
    if(!req.accepts('application/json')){
        return next();
    }

    res.end([1,2,3,4,5]);
});

// Serve XML requests
app.get('/items/', function(req, res, next){
    if(!req.accepts('application/xml')){
        return next();
    }

    res.end('<items><item>1</item><item>2</item><item>3</item><item>4</item><item>5</item></items>');
});

// Serve HTML requests
app.get('/items/', function(req, res, next){
    if(!req.accepts('text/html')){
        return next();
    }

    res.end('<ul><li>1</li><li>2</li><li>3</li><li>4</li><li>5</li></ul>');
});

In particular, the above code seems rather repetitive, there's probably a more standard way to write this.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

There is response.format method which uses selects certain render method based on the "Accept" header. http://expressjs.com/4x/api.html#res.format

The response could look like this:

res.format({
  text: function(){
    res.send('hey');
  },

  html: function(){
    res.send('hey');
  },

  json: function(){
    res.send({ message: 'hey' });
  }
});

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share

Just Browsing Browsing

[3] html - How to create even cell spacing within a

2.1m questions

2.1m answers

62 comments

56.6k users

...