Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/javascript/406.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/71.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript React组件未呈现为HTML_Javascript_Html_Reactjs - Fatal编程技术网

Javascript React组件未呈现为HTML

Javascript React组件未呈现为HTML,javascript,html,reactjs,Javascript,Html,Reactjs,HTML似乎没有加载snippetInfo.js,原因我不明白。我在网上冲浪过很多次,但是解决方案不起作用。如果我将type='text/javascript'添加到脚本标记中,我会得到错误Uncaught SyntaxError:Unexpected token'我将“type='text/babel'”添加到我的脚本标记中,它会起作用。你的package.json描述中发生了什么?你不能在浏览器中加载snippetinfo.js,因为JSX不是有效的js。您应该先将其传输并绑定到JS,然后才

HTML似乎没有加载snippetInfo.js,原因我不明白。我在网上冲浪过很多次,但是解决方案不起作用。如果我将
type='text/javascript'
添加到脚本标记中,我会得到错误
Uncaught SyntaxError:Unexpected token'我将
“type='text/babel'”
添加到我的脚本标记中,它会起作用。

你的package.json描述中发生了什么?你不能在浏览器中加载snippetinfo.js,因为JSX不是有效的js。您应该先将其传输并绑定到JS,然后才能这样做。
<html>
  <head>
    <script crossorigin src="https://unpkg.com/react@16/umd/react.development.js" ></script>
    <script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.development.js" ></script>
  </head>
<body>
  <h1>Snippet #1234</h1>
  <div id="snippetinfo"></div>
  <script src="snippetInfo.js" ></script>
</body>
</html>
class UpdateButton extends React.Component {
  render() {
    return (
      <button className='Update'>Update Info</button>
    );
  }
}

class SnippetInfo extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      value: 'Snippet Info Here...',
    };

    this.handleChange = this.handleChange.bind(this);
    this.handleSubmit = this.handleSubmit.bind(this);
  }

  handleChange(event) {
    this.setState({value: event.target.value});
  }

   
  handleSubmit(event) {
    alert('Snippet Info was updated');
    event.preventDefault();
  }
  

  render () {
    const status = 'Next player: Joe';
    
    return (
      <div>
        <div className='status'>{status}</div>
        <div className='form'>
          <form onSubmit={this.handleSubmit}>
            <label>
              Snippet Info:
              <textarea value={this.state.value} onChange={this.handleChange}/>
            </label>
            <input type='submit' value='Submit' />
          </form>
        </div>
      </div>
    );
  }
}

 ReactDOM.render(
  <SnippetInfo />,
  document.getElementById("snippetinfo")
);
{
  "name": "Urania",
  "version": "1.0.0",
  "description": "<html> <head> <style> /************************************* GENERAL *************************************/ body {     margin: 15;     padding: 0;     font: 12px/1.4em \"Lucida Grande\", Verdana, sans-serif;     color: #333;     overflow-y: scroll;     text-rendering: optimizeLegibility;     background-color: #F2F2F2; }",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jhyuen/urania.git"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/jhyuen/urania/issues"
  },
  "homepage": "https://github.com/jhyuen/urania#readme",
  "devDependencies":{
      "babel-cli": "^6.26.0",
      "babel-preset-react-app": "^3.1.2",
      "babel-core": "^6.1.*",
      "babel-loader": "^6.2.*",
      "babel-preset-es2015": "^6.16.*",
      "babel-preset-react": "^6.16.*",
      "webpack": "^1.13.*",
      "webpack-dev-server": "^1.16.*"
  },
  "dependencies":{
      "react": "^16.11.0",
      "react-dom": "^16.11.0"
  }
}