1
使用express可以從Wordpress API製作外部http獲取請求嗎?使用Express和NODEJS的Wordpress API
假設我想向http://demo.wp-api.org/wp-json/wp/v2/posts發送獲取請求 - 這是來自wordpress的帖子列表。
樣品:
router.get('/posts', function(req, res){
I should make an external http get request here from wordpress api
("http://demo.wp-api.org/wp-json/wp/v2/posts")
Then I want to display the response as json
}
當然。使用'request'模塊:https://www.npmjs.com/package/request –
謝謝。它已經在工作了。我會進行更新。 –