2013-02-18 97 views
16

如何在Express中設置響應Location HTTP標頭?我已經試過這一點,但它不工作:如何在Express框架中設置位置響應HTTP頭?

Controller.prototype.create = function(prop, res) { 
    var inst = new this.model(prop); 

    inst.save(function(err) { 
     if (err) { 
     res.send(500, err); 
     } 

     res.location = '/customers/' + inst._id; 
     res.send(201, null); 
    }); 
    }; 

此代碼是堅持一個新的文檔到MongoDB的,並且在比賽設置的位置和發送201響應。得到這個響應,沒有Location頭設置:

HTTP/1.1 201 Created 
X-Powered-By: Express 
Content-Length: 0 
Date: Mon, 18 Feb 2013 19:08:41 GMT 
Connection: keep-alive 

編輯:爲uʍopǝpısdn(酷缺口順便說一句)答案,res.setHeader作品。但爲什麼res.location不?

回答

24

你正在設置res.locationres.location是一個函數。

res.location('/customers/' + inst._id) 
15

res對象公開setHeader()

res.setHeader('Location', foo); 

嘗試,與其res.location

+0

它的工作原理。但爲什麼'res.location'(按照文檔http://expressjs.com/api.html#res.location)不? – gremo 2013-02-18 19:50:26

+1

'location'不是'property',這是一種方法。參見@Johnathan Ong的回答。 – slezica 2013-02-18 20:19:00

+1

專門針對位置,您可以使用res.location(),正如其他評論者所說。但對於其他標題或自定義標題,它是res.set(),而不是res.setHeader()。 – 2014-04-25 18:43:10

相關問題