为什么谷歌浏览器不会读取.txt文件

时间:2016-06-20 12:14:40

标签: html html5 google-chrome

为什么谷歌浏览器不会阅读<?php class MyModule extends Module { public function __construct() { // ... $this->is_configurable = true; // ... } } ,而只读.txt files?我的意思是浏览器会阅读.html files的声明并意识到他必须将其转换为html5权利吗?

1 个答案:

答案 0 :(得分:5)

  

为什么不会谷歌浏览器读取.txt文件,它只读取.html文件?

确实如此。

如果我在我的Chrome副本中转到File > Open,然后选择一个文本文件,则会在视口中将其打开。

  

我的意思是浏览器会阅读html5的声明并意识到他必须将其转换为网页吗?

没有

浏览器使用Content-Type(从文件扩展名中推断出本地文件)来确定如何处理文件。他们通常不会进行内容嗅探。