const got = require('got') const retry = { retry: { retries: 3 } } got('http://localhost:3000/retry', retry).then(({ body }) => { console.log(body); }) ...
確定! 回上一頁