其他分享
首页 > 其他分享> > 微服务中如何将grpc的code转换成http的状态码

微服务中如何将grpc的code转换成http的状态码

作者:互联网

func HandleGrpcErrorToHttp(err error, c *gin.Context) {
	// 将grpc的code转换成http的状态码
	if err != nil {
		if e, ok := status.FromError(err); ok {
			switch e.Code() {
			case codes.NotFound:
				c.JSON(http.StatusNotFound, gin.H{"msg": e.Message()})
			case codes.Internal:  // grpc内部错误
				c.JSON(http.StatusInternalServerError, gin.H{"msg": "内部错误"})
			case codes.InvalidArgument:  // 参数错误
				c.JSON(http.StatusBadRequest, gin.H{"msg": "参数错误"})
			default:
				c.JSON(http.StatusInternalServerError, gin.H{"msg": "内部错误"})
			}
			return
		}
	}
}

标签:code,http,grpc,JSON,codes,msg,gin
来源: https://www.cnblogs.com/mayanan/p/15915420.html