我正在开发一个 Angular 2 应用程序,我想在其中使用 Protocol Buffer 将数据发送到 Go 服务器。
我找到了这个 dcodeIO/protobufjs 。但是我不知道在项目中该如何使用?
我还尝试使用 protobufjs
安装 typings install dt~protobufjs --global
的类型。当我导入它时,WebStorm 说 Cannot find module protobuf
。
任何帮助!赞赏!
最佳答案
我解决了!我做了这个 npm install @types/protobufjs --save
并且我得到了类型定义。
然后像这样简单地使用它 import * as ProtoBuf from 'protobufjs';
谢谢!
关于angular - Angular 2 项目中的 Protocol Buffer ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40561548/