您必须执行以下操作:
var querystring = require('querystring');//...axios.post(authServerUrl + token_access_path, querystring.stringify({ username: 'abcd', //gave the values directly for testing password: '1235!', client_id: 'user-client' }), { headers: { "Content-Type": "application/x-www-form-urlenpred" } }).then(function(response) { console.log(response); });


