本人转载链接:https://www.jianshu.com/p/1b90dd4bcb0a
1.安装nodejs
2.安装pbjs, 在终端执行npm install -g protobufjs
3.proto转js,进入proto文件所在目录,执行命令:
pbjs -t static-module -w commonjs -o proto.js *.proto(参数说明-o生成的文件, *.proto是源文件; 所有的生成文件名称"protobuf_" + 游戏id)
4.修改生成js文件
把var $protobuf = require("protobufjs/minimal");
修改为var $protobuf = protobuf;