gRPC-web typescript 如何将长整数转换为数字
gRPC-web typescript how to convert from long to number
我正在使用 gRPC-web,并且我有来自服务器的 id
类型 number|Long
的数据。
我需要将 number|Long
分配给 number
。 Long
来自使用gRPC通信的服务器。
错误:
Type 'number | Long' is not assignable to type 'number'. Type 'Long' is not assignable to type 'number'.
当我尝试 parseInt()
时,它说:
Type 'number' is not assignable to type 'string'
Long to number 是一种有损操作,因此您不能在不损失任何精度的情况下安全地执行此操作。但是您可以使用 .toNumber() 方法。
我正在使用 gRPC-web,并且我有来自服务器的 id
类型 number|Long
的数据。
我需要将 number|Long
分配给 number
。 Long
来自使用gRPC通信的服务器。
错误:
Type 'number | Long' is not assignable to type 'number'. Type 'Long' is not assignable to type 'number'.
当我尝试 parseInt()
时,它说:
Type 'number' is not assignable to type 'string'
Long to number 是一种有损操作,因此您不能在不损失任何精度的情况下安全地执行此操作。但是您可以使用 .toNumber() 方法。