1

我是 React 的新手。

我想尝试合并此处找到的“ReactGridLayout”模块:https ://github.com/STRML/react-grid-layout

在我正在处理的 Mean.JS v0.4 项目中。

我首先将 ngReact 添加到我的项目并添加资产:

    // application/config/assets/default.js
    module.exports = {
      client: {
        lib: {
          css: [
            // ...
            'public/lib/react-grid-layout/css/styles.css',
            'public/lib/react-resizable/css/styles.css'           
          ],
          js: [
            // ...
            'public/lib/react/react.js',
            'public/lib/react/react-dom.js',
            'public/lib/ngReact/ngReact.min.js',
            'public/lib/react-grid-layout/react-grid-layout.min.js',
          ]
        }
      }
    };  

然后在我模型的 module.config 文件中:

    angular
    .module('model', ['react'])

在我的客户端控制器中,我添加了以下内容:

    // model.client.controller.js

    var MyFirstGrid = React.createClass({
      displayName: 'MyFirstGrid',

      render: function render() {
        // layout is an array of objects, see the demo for more complete usage
        var layout = [{ i: 'a', x: 0, y: 0, w: 1, h: 2, static: true }, { i: 'b', x: 1, y: 0, w: 3, h: 2, minW: 2, maxW: 4 }, { i: 'c', x: 4, y: 0, w: 1, h: 2 }];
        return React.createElement(
          ReactGridLayout,
          { className: 'layout', layout: layout, cols: 12, rowHeight: 30, width: 1200 },
          React.createElement(
            'div',
            { key: 'a' },
            'a'
          ),
          React.createElement(
            'div',
            { key: 'b' },
            'b'
          ),
          React.createElement(
            'div',
            { key: 'c' },
            'c'
          )
        );
      }
    });

    app.value('MyFirstGrid', MyFirstGrid);

然后在我看来,我添加了:

    // view-model.client.view.html

    <react-component name="MyFirstGrid" props="layout" watch-depth="reference"/>

但是,在页面加载时,我得到:

    **ReferenceError: ReactGridLayout is not defined**

这并不完全出乎意料,STRML 的 ReactGridLayout 的文档包括:

    var ReactGridLayout = require('react-grid-layout');

但是,因为我试图将它包含在我的客户端控制器中,所以我不能使用“requires”,这就是为什么我试图将它添加为“资产”。

我怎样才能解决这个问题?

谢谢!

4

0 回答 0