我有一个反应组件,我正在使用以下代码将其渲染到 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 加载到项目中,并且对这个问题感到非常困惑。如果有人经历过类似的事情,那么很高兴知道您是如何解决它的。