aliyun / aliyun-tablestore-nodejs-sdk

Aliyun TableStore(原OTS) SDK for Node.js
Apache License 2.0
88 stars 33 forks source link

项目中使用了已弃用的web标准属性:__proto__,请修改一下以便兼容新的js runtime deno #60

Closed cody880910 closed 1 year ago

cody880910 commented 1 year ago

lib/client.js var buffer = request.proto.constructor.encode(request); 修改为: var buffer = Object.getPrototypeOf(request).constructor.encode(request);

lib/protocol/encoder.js const writer = aggBody.proto.constructor.encode(aggBody); 修改为: const writer = Object.getPrototypeOf(aggBody).constructor.encode(aggBody);

xjtushilei commented 1 year ago

2天内发布5.3.1版本,修改这个问题