protobuf.js如何为浏览器生成静态es6模块?

时间:2019-05-21 07:44:32

标签: javascript protobufjs

我的example.html包含

...
<script src="//cdn.rawgit.com/dcodeIO/protobuf.js/6.8.8/dist/minimal/protobuf.js"></script>
<script type="module">
  import {Task} from "./task.pb.js"
  const msg = Task.create({text: 'test', done: false})
  const bin  = Task.encode(msg).finish()
  console.log(Task.decode(bin))
</script>
...

我的原始文件看起来像这样

syntax = "proto3";

import "google/protobuf/any.proto";

package main;

message Task {
    string text = 1;
    bool done = 2;
}

message Test {
    google.protobuf.Any object = 1;
}

试图像这样构建静态模块

pbjs -p . task.proto -t static-module --es6 -w es6 -o task.pb.js

但这似乎没有生成浏览器可以理解的模块吗?

0 个答案:

没有答案