为什么我们在用lamp环境的时候,访问php页面需要返回Hello World,直接在文件里写echo 'Hello World'就可以,而django却需要
<code>from django.http import HttpResponse def index(request): return HttpResponse('Hello World') ~ </code>
这样呢?
为什么我们在用lamp环境的时候,访问php页面需要返回Hello World,直接在文件里写echo 'Hello World'就可以,而django却需要
<code>from django.http import HttpResponse def index(request): return HttpResponse('Hello World') ~ </code>
这样呢?
只是对http协议的封装而已.
PHP也有类似的库, 只是因为PHP不是严格的面向对象的语言, 当然它也支持面向对象的编程方式.
这样写法的好处是拥有面向对象的所有好处. 可读性方面更强.
<code class="php">Response('hello!world')->withHeader(['Content-type:text/html;charset=utf8;']); //PHP也可以以这样的方式编程. //当然你也可以这样 header('Content-type:text/html;charset=utf8;'); echo 'hello!world';</code>
所以这只是一种编程方式, 无需纠结.