> https://nodejs.org/dist/latest-v4.x/docs/api/http.html#http_http_request_options_callback > In this section, the demo use > > ``` > postData.length > ``` > > as the value of the Content-Length,I think should use > > ``` > Buffer.byteLength(postData) > ``` > > insead. > I use the code in the example frequently,so I think the code should be more widely used.