rust-lang / book

The Rust Programming Language
https://doc.rust-lang.org/book/
Other
15.01k stars 3.39k forks source link

Ch20-* Content-Type not set #3211

Open ghost opened 2 years ago

ghost commented 2 years ago

URL to the section(s) of the book with this problem: https://doc.rust-lang.org/book/ch20-01-single-threaded.html https://doc.rust-lang.org/book/ch20-02-multithreaded.html https://doc.rust-lang.org/book/ch20-03-graceful-shutdown-and-cleanup.html

Description of the problem:

In some internet browsers, the following code cannot be parsed because 'Content-Type' is not set. let response = format!( "{}\r\nContent-Length: {}\r\n\r\n{}", status_line, contents.len(), contents );

Suggested fix:

Set 'Content-Type' let response = format!( "{}\r\nContent-Type: text/html;charset=UTF-8\r\nContent-Length: {}\r\n\r\n{}", status_line, contents.len(), contents );

carols10cents commented 2 years ago

Which browsers, please?

ghost commented 2 years ago

请问哪些浏览器?

Operating System: windows10 Internet Browsers: Microsoft Edge, version: 102.0.1245.39