未定义'proto'no-undef

时间:2020-03-30 13:07:14

标签: reactjs google-protocol-buffer

在与react js一起使用proto时出现错误

'proto'未定义为no-undef“

在js文件中使用proto类时,会在运行时发生此错误

const entity = new proto.EntityUiPb();
entity.setId("123");
console.debug(entity.toObject);
function App() {
    return (

    <div className="App">
      <header className="App-header">
        <img src={logo} className="App-logo" alt="logo" />
        <p>
          Edit <code>src/App.js</code> and save to reload.
        </p>
        <a
          className="App-link"
          href="https://reactjs.org"
          target="_blank"
          rel="noopener noreferrer"
        >
          Learn React
        </a>
      </header>
    </div>
  );
}

export default App;

0 个答案:

没有答案