Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

建议:API编写相关 #18

Open
lihuacai168 opened this issue Jan 4, 2019 · 0 comments
Open

建议:API编写相关 #18

lihuacai168 opened this issue Jan 4, 2019 · 0 comments

Comments

@lihuacai168
Copy link

  • 请求默认方式改为get,日常使用中,感觉post没有get频率高
  • 点击Request栏的时候,URL中的请求参数自动加载到params这一栏中.(参考postman)
  • API恢复读取配置(上一版的环境功能)
    • 现在的写法,例如获取用户信息,要求header传入token 请求地址: $url/get/userInfo header信息 token=${get_token()}
      • 只能把请求$url写死在api中.$url是通过变量的方式获取.但切换运行API的环境,还是需要改url的值.
      • 例如:想把测试环境改成生产环境来运行.要么改变全局变量url对应的值.要么设置多一个全局变量来保存生产环境的url.无法实现通过一个请求地址$url/get/userInfo header就能动态切换环境
      • 上一版的写法请求地址: /get/userInfo url在环境在定义好,token在环境中调用hook函数先获取好,因为很多借口需要用到token
      • 上一版的好处1:,多个api中需要token时,只需要在一个环境中调用好即可. 但现在需要在每个api中调用获取token的函数.
      • 上一版的好处2: 现在的版本,因为api中不能读取配置,导致每个api都要在header中调用获取token函数,
        设置header的content-type等信息.但是用例集是可以读取配置.token是可以通过配置来获取.无需在用例中获取...这样就导致写用例的时候,需要写删除掉api中的获取token的函数,来避免重复获取token.
        image
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant