简体   繁体   English

Browserify / Reactify - 未捕获的ReferenceError:未定义函数

[英]Browserify/Reactify - Uncaught ReferenceError: function is not defined

I'm trying to abstract my code and I have the following two files in the following structure 我正在尝试抽象我的代码,我在以下结构中有以下两个文件

main.js
  components
  - parent.js

main.js main.js

require('./components/Parent');

ReactDOM.render(
    <Parent />,
    document.getElementById('content')
);

components/Parent.js 组件/ Parent.js

var Parent = React.createClass({
  displayName: 'Parent',
  render: function(){
    return (
      <div>
        <div> This is the parent page. </div>
      </div>
    )
  }
});

index.html 的index.html

<div id="app">  
</div>

I run the following - 我运行以下 -

browserify -t reactify main.js -o main_js.js

And this is the javascript it creates 这是它创建的JavaScript

(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
require('./components/Parent');

ReactDOM.render(
    React.createElement(Parent, null),
    document.getElementById('content')
);

},{"./components/Parent":2}],2:[function(require,module,exports){
var Parent = React.createClass({
  displayName: 'Parent',
  render: function(){
    return (
      React.createElement("div", null, 
        React.createElement("div", null, " This is the parent page. ")
      )
    )
  }
});

},{}]},{},[1]);

Running the page complains on line 5 which is React.createElement(Parent, null), 运行页面抱怨第5行是React.createElement(Parent, null),

Uncaught ReferenceError: Parent is not defined

But as you can see the file is loaded, so why is it not finding it in the file? 但正如您可以看到文件已加载,那么为什么它没有在文件中找到它?

Change require('./components/Parent'); 更改require('./components/Parent'); to var Parent = require('./components/Parent'); to var Parent = require('./components/Parent');

You need to specify the name of the variable it's assigned to. 您需要指定分配给它的变量的名称。 Also, if you're placing them in different modules, you need to export the module. 此外,如果您将它们放在不同的模块中,则需要导出模块。

// in ./components/Parent
module.exports = Parent;

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM