码迷,mamicode.com
首页 > 其他好文 > 详细

Mock7 moco框架重定向

时间:2018-09-13 20:19:22      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:输入   2.0   http   with   start   mina   path   ctrl   info   

新建一个startupWithRedirect.json 

[
  {
    "description": "重定向到百度",
    "request": {
      "uri": "/redirect"
    },
    "redirectTo":"http://www.baidu.com"
  },
  {
    "description": "重定向到自己的网页上",
    "request": {
      "uri": "/redirect/topath"
    },
    "redirectTo":"/redirect/new"
  },
  {
    "description": "这是被重定向到的请求",
    "request": {
      "uri": "/redirect/new"
    },
    "response":{
      "text":"重定向成功"
    }
  }

]

直接在terminal,键盘上按下ctrl+c

然后重新启动mock服务:

java -jar ./moco-runner-0.12.0-standalone.jar http -p 8888 -c startupWithRedirect.json

然后,直接在浏览器输入 http://localhost:8888/redirect,然后回车,会直接到了百度页面

        在浏览器里面输入 http://localhost:8888/redirect/topath  ,然后回车,是重定向到了自己的请求上。

技术分享图片

 

Mock7 moco框架重定向

标签:输入   2.0   http   with   start   mina   path   ctrl   info   

原文地址:https://www.cnblogs.com/peiminer/p/9642320.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!