我有一個關於此的前一個問題,所以看看here。如何發送我的JSON到節點js的我的視圖
我現在可以登錄到Spotify的,並得到了在loged用戶的播放列表。我現在想送這些播放列表(它們是JSON),以有觀點認爲,一個HTML頁面或...
這是我的代碼如下所示:
app.get('/playlists', function(req, res) {
var state = generateRandomString(16);
res.cookie(stateKey, state);
var scope = 'playlist-read-private';
var options = {
url:"https://api.spotify.com/v1/me/playlists",
headers:{
'Authorization': "Bearer " + token,
'response_type': 'code',
'client_id': client_id,
'scope': scope,
'state': state
},
json:true
};
request.get(options, function(error, req, body){
console.log(body);
//Here I want to send the json to the view
res.send(body);
});
});
與此代碼「res.send(body);
」問題是,我得到這個作爲網址:本地主機:8888 /播放列表,並在此頁面中我只看到了JSON。我想將它發送到我可以選擇顯示的信息的視圖。有人可以幫我弄這個嗎?提前
感謝
@aring這是我的新問題 –
什麼是「視圖」,您是否使用視圖引擎,如Jade,EJS等? – adeneo
我發現了一些信息來做到這一點與ejs,但不知道如何使用它 –