其他分享
首页 > 其他分享> > .net bigint,long传到前端发现精度不对

.net bigint,long传到前端发现精度不对

作者:互联网

 

解决:.net bigint,long传到前端发现精度不对

/// <summary>
/// 所有表的主键
/// long返回到前端js的时候,会丢失精度,所以转成字符串
/// </summary>
[JsonConverter(typeof(StringJsonConverter))]
public long? Id { get; set; }

标签:前端,long,传到,bigint,net,精度
来源: https://www.cnblogs.com/xbding/p/16139894.html