1

我有一个反应组件,我正在使用以下代码将其渲染到 DOM 中:

ReactDOM.render(React.createElement(PROJECT.CalendarApp, 
        {   key                     : 'globalcalendar', 
            roomPage                : false, 
            localeRegion            : PROJECT.user.locale().region,
            localeStartDay          : PROJECT.user.locale().startDay,
            showCalendarOnLoad      : false,
            name                    : 'globalcalendar',
            availabilityCalendar    : false 
        }), 
    document.getElementById('global_calendar_component'));

我在 IE 9/10 中收到以下错误,似乎无法弄清楚为什么 - Unable to get value of the property 'localeRegion' object is null or undefined reactjs

PROJECT.user.locale().region被正确定义并返回一个字符串'en'

这个问题只发生在 IE 9 和 10 中,我的 webpack 设置现在看起来像这样:

var webpack = require('webpack');
var path = require('path');

var BUILD_DIR = path.resolve(__dirname, '../src/Family/SystemBundle/Resources/public/js/components/compiled');
var APP_DIR = path.resolve(__dirname, '../src/Family/SystemBundle/Resources/public/js/components/');

var config = {
    entry: {
        calendar    : APP_DIR + '/calendar.jsx'
    },
        output: {
            path: BUILD_DIR,
            filename: '[name].js'
        },
    module : {
        loaders : [
            {
                test : /\.jsx?/,
                include : APP_DIR,
                loader : 'babel',
                query:
                {
                    presets:[require.resolve('babel-preset-es2015'), require.resolve('babel-preset-react')] // Brackets - required for babel symlinking because node_modules is not in the root folder.
                }
            }
        ]
    }
};

module.exports = config;

我已经将 Babel Polyfill 加载到项目中,并且对这个问题感到非常困惑。如果有人经历过类似的事情,那么很高兴知道您是如何解决它的。

4

1 回答 1

1

我们终于找到了这个问题的答案。问题是 IE9 不喜欢在 react 组件的构造函数中使用 props,但允许在其他组件方法中使用 props。

要解决此问题,请不要在构造函数中使用任何道具或尝试plugins: [['transform-es2015-classes', {loose: true}]]在 webpack 文件中使用。

更多细节在这里:https ://phabricator.babeljs.io/T3041 & https://phabricator.babeljs.io/T6954

于 2016-08-24T11:09:04.323 回答