Moco框架使用(六:接口重定向)

1.接口重定向

[
{
"description":"重定向到百度",
"request":{
"uri":"/redirect"
},
"redirectTo":"http://www.baidu.com"
},
{
"description":"重定向到自己的网页上",
"request":{
"uri":"/redirect/topath"
},
"redirectTo":"/redirect/new"
},
{
"description":"这是被重定向到的请求",
"request":{
"uri":"/redirect/new"
},
"response":{
"text":"重定向成功"
}
}
]
---------------------
执行文件,此时: 
1.访问localhost:8899/redirect会直接跳转到百度首页 
2.访问localhost:8899/redirect/topath会跳转到localhost:8899/redirect/new

 

posted @ 2019-08-06 10:08  蘑菇慢慢  阅读(110)  评论(0)    收藏  举报