6.$http服务

1.把文件夹,创建在服务器的目录当中。

2.在浏览器当中,查看文件
http://localhost/day5-code/

3.到phpstorm当中,进行配置 setting ->deployment

4.点击绿色添加,把文件地址,贴入进去。

Ajax的基本原理复习


6.$http服务_第1张图片
image.png




    
    Title






6.$http服务_第2张图片
image.png

$http服务

$http服务-get请求

没有传递参数的情况




    
    Title




{{res}}

6.$http服务_第3张图片
image.png

get的查询方式的传参方式




    
    Title




{{res}}

6.$http服务_第4张图片
image.png
1.url: 'get.php?flag=zm',

 2.params: {
                flag: 'zm'     /*一定要与服务器那    边的值相同和相等*/
            }

$http服务-post请求

post必须得要设置请求头

headers: {'Content-Type':'application/x-www-form-urlencoded' }



    
    Title




{{res}}

6.$http服务_第5张图片
image.png

$http服务-get请求的一个小demo

系统给出的是一个json文件,要使用此文件首先需要转化成php文件格式

6.$http服务_第6张图片
image.png
6.$http服务_第7张图片
image.png



    
    Title




  • //遍历服务器的值 {{student.name}}:{{student.address}}:{{student.age}}
6.$http服务_第8张图片
image.png

你可能感兴趣的:(6.$http服务)