当前位置:  开发笔记 > 编程语言 > 正文

如何使用邮递员检查字段数据类型(仅限)?

如何解决《如何使用邮递员检查字段数据类型(仅限)?》经验,为你挑选了1个好方法。

我正在使用Postman进行一些API验证,其中我想验证响应中几个字段的数据类型(字符串/整数).我不想检查字段值.例如:如果我得到类似下面的响应,我想检查sign_in_count总是返回整数数据类型.:

    {
  "data": {
    "id": 274,
    "age": null,
    "email_id": "ojuuw@mailinator.com",
    "email_verification_flag": true,
    "ext_account": null,
    "ext_authenticator": null,
    "ext_user_id": null,
    "firstname": "firstname",
    "forgot_password_sent": null,
    "gender": null,
    "last_sign_in_at": null,
    "last_sign_in_ip": null,
    "region": "IN",
    "registered_using": null,
    "remember_created_at": null,
    "reset_password_sent_at": null,
    "reset_password_token": null,
    "sign_in_count": 0  
  }
}

任何帮助,非常感谢..

谢谢



1> Dinesh Kumar..:

您需要使用typeof返回未评估操作数类型的函数.

var body = JSON.parse(responseBody); tests["sign_in_count is number"] = typeof(body.data.sign_in_count) === "number"; tests["firstname is string"] = typeof(body.data.firstname) === "string";

推荐阅读
手机用户2402851155
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有