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
}
}
}