admin管理员组文章数量:1345179
I'm experimenting with React.js with Rails via react-rails(1.0.0pre) and have had some troubles pre-rendering responsive elements that rely on the window size. Whenever I create a ponent that uses window, I get the following error: [React::Renderer] ReferenceError: window is not defined
when attempting to render the ponent to a string in my Rails view. For example, my ponent:
/** @jsx React.DOM */
var Example = React.createClass({
getInitialState: function() {
return {
windowWidth: $(window).width()
};
},
render: function () {
return (
<div className="example-wrapper">
{this.props.label}
{this.state.windowWidth}
</div>
);
}
});
and my view with props:
<%= react_ponent('Example', {name: 'Window width is:'}, { prerender: true }) %>
Is it possible to reference the window in React's virtual DOM?
I'm experimenting with React.js with Rails via react-rails(1.0.0pre) and have had some troubles pre-rendering responsive elements that rely on the window size. Whenever I create a ponent that uses window, I get the following error: [React::Renderer] ReferenceError: window is not defined
when attempting to render the ponent to a string in my Rails view. For example, my ponent:
/** @jsx React.DOM */
var Example = React.createClass({
getInitialState: function() {
return {
windowWidth: $(window).width()
};
},
render: function () {
return (
<div className="example-wrapper">
{this.props.label}
{this.state.windowWidth}
</div>
);
}
});
and my view with props:
<%= react_ponent('Example', {name: 'Window width is:'}, { prerender: true }) %>
Is it possible to reference the window in React's virtual DOM?
Share edited Jul 11, 2014 at 19:04 Sophie Alpert 143k36 gold badges226 silver badges243 bronze badges asked Jul 11, 2014 at 14:40 KomboKombo 2,3813 gold badges35 silver badges64 bronze badges 1-
1
window
only exists inside a browser, and prerender is done on the server; there is no browser and no "window" to which it is rendering. Prerendering is rendering a string with no browser environment. Anything relying onwindow
should be done after the ponent is mounted, at which point you know the ponent is in a real browser environment. – Ross Allen Commented Jul 11, 2014 at 18:35
1 Answer
Reset to default 13On the server when prerendering, you can't query the window's width – how could you? The server doesn't have access to that information and so it couldn't possibly be included in the HTML that's sent down. Instead, you want to have some initial state that the ponent is rendered with, and then update upon mounting when you know the window object is accessible:
var Example = React.createClass({
getInitialState: function() {
return {
windowWidth: 0 // or "loading..." or whatever
};
},
ponentDidMount: function() {
// Triggers a re-render
this.setState({
windowWidth: $(window).width()
});
},
render: function () {
return (
<div className="example-wrapper">
{this.props.label}
{this.state.windowWidth}
</div>
);
}
});
本文标签: javascriptWindow is not Defined on PrerenderStack Overflow
版权声明:本文标题:javascript - Window is not Defined on Prerender - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743771968a2536285.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论