I have a file persons.json
, containing:
[
{"firstName":"John", "lastName":"Doe"},
{"firstName":"Anna", "lastName":"Smith"},
{"firstName":"Peter", "lastName":"Jones"}
]
When I open it in Firefox, it invokes the JSON viewer, like this:
However, I would like to achieve the same thing when opening an HTML file, persons.html
:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="application/json; charset=utf-8"/>
</head>
<body>
<pre>
[
{"firstName":"John", "lastName":"Doe"},
{"firstName":"Anna", "lastName":"Smith"},
{"firstName":"Peter", "lastName":"Jones"}
]
</pre>
</body>
</html>
Which Firefox renders to:
How can I force Firefox to render the HTML file's output as JSON?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…