var fetch = require('node-fetch'); fetch('http://httpbin.org/post', { method: 'POST', body: 'a=1' }) .then(function(res) { return ...
確定! 回上一頁