原文:http://facebook.github.io/react/docs/working-with-the-browser.html
Working With the BrowserEdit on GitHub
React provides powerful abstractions that free you from touching the DOM directly in most cases,but sometimes you simply need to access the underlying API,perhaps to work with a third-party library or existing code.
The Virtual DOM
React is so fast because it never talks to the DOM directly. React maintains a fast in-memory representation of the DOM.render()
methods return adescriptionof the DOM,and React can diff this description with the in-memory representation to compute the fastest way to update the browser.
Additionally,React implements a full synthetic event system such that all event objects are guaranteed to conform to the W3C spec despite browser quirks,and everything bubbles consistently and efficiently across browsers. You can even use some HTML5 events in IE8!
Most of the time you should stay within React's "faked browser" world since it's more performant and easier to reason about. However,sometimes you simply need to access the underlying API,perhaps to work with a third-party library like a jQuery plugin. React provides escape hatches for you to use the underlying DOM API directly.
Refs and findDOMNode()
To interact with the browser,you'll need a reference to a DOM node. React has aReact.findDOMNode(component)
function which you can call to get a reference to the component's DOM node.
Note:
findDOMNode()
only works on mounted components (that is,components that have been placed in the DOM). If you try to call this on a component that has not been mounted yet (like callingfindDOMNode()
inrender()
on a component that has yet to be created) an exception will be thrown.
In order to get a reference to a React component,you can either usethis
to get the current React component,or you can use refs to refer to a component you own. They work like this:
var MyComponent = React.createClass({
handleClick: function() {
// Explicitly focus the text input using the raw DOM API.
React.findDOMNode(this.refs.myTextInput).focus();
},
render// The ref attribute adds a reference to the component to
// this.refs when the component is mounted.
return (
<div>
<input type="text" ref"myTextInput" />
<input
type"button"
value"Focus the text input"
onClick={this.handleClick}
/>
</div>
);
}
});
React.render(
<MyComponent />,
document.getElementById('example')
);
More About Refs
To learn more about refs,including ways to use them effectively,see ourmore about refsdocumentation.
Component Lifecycle
Components have three main parts of their lifecycle:
- Mounting:A component is being inserted into the DOM.
- Updating:A component is being re-rendered to determine if the DOM should be updated.
- Unmounting:A component is being removed from the DOM.
React provides lifecycle methods that you can specify to hook into this process. We providewillmethods,which are called right before something happens,anddidmethods which are called right after something happens.
Mounting
getInitialState(): object
is invoked before a component is mounted. Stateful components should implement this and return the initial state data.-
componentWillMount()
is invoked immediately before mounting occurs. -
componentDidMount()
is invoked immediately after mounting occurs. Initialization that requires DOM nodes should go here.
Updating
- componentWillReceiveProps(object nextProps)is invoked when a mounted component receives new props. This method should be used to compare
-
shouldComponentUpdate(object nextProps,object nextState): boolean
is invoked when a component decides whether any changes warrant an update to the DOM. Implement this as an optimization to comparethis.props
withnextProps
andthis.state
withnextState
and returnfalse
if React should skip updating. -
componentWillUpdate(object nextProps,object nextState)
is invoked immediately before updating occurs. You cannot callthis.setState()
here. -
componentDidUpdate(object prevProps,object prevState)
is invoked immediately after updating occurs.
this.props
andnextProps
to perform state transitions usingthis.setState()
.
Unmounting
- componentWillUnmount()is invoked immediately before a component is unmounted and destroyed. Cleanup should go here.
Mounted Methods
Mountedcomposite components also support the following methods:
- findDOMNode(): DOMElementcan be invoked on any mounted component in order to obtain a reference to its rendered DOM node.
-
forceUpdate()
can be invoked on any mounted component when you know that some deeper aspect of the component's state has changed without usingthis.setState()
.
Browser Support and Polyfills
At Facebook,we support older browsers,including IE8. We've had polyfills in place for a long time to allow us to write forward-thinking JS. This means we don't have a bunch of hacks scattered throughout our codebase and we can still expect our code to "just work". For example,instead of seeing+new Date()
,we can just writeDate.now()
. Since the open source React is the same as what we use internally,we've carried over this philosophy of using forward thinking JS.
In addition to that philosophy,we've also taken the stance that we,as authors of a JS library,should not be shipping polyfills as a part of our library. If every library did this,there's a good chance you'd be sending down the same polyfill multiple times,which could be a sizable chunk of dead code. If your product needs to support older browsers,chances are you're already using something likees5-shim.
Polyfills Needed to Support Older Browsers
es5-shim.js
fromkriskowal's es5-shimprovides the following that React needs:
- Array.isArray
-
Array.prototype.every
-
Array.prototype.forEach
-
Array.prototype.indexOf
-
Array.prototype.map
-
Date.now
-
Function.prototype.bind
-
Object.keys
-
String.prototype.split
-
String.prototype.trim
es5-sham.js,also fromkriskowal's es5-shim,provides the following that React needs:
- Object.create
-
Object.freeze
The unminified build of React needs the following frompaulmillr's console-polyfill.
- console.*
When using HTML5 elements in IE8 including<section>
,<article>
,85)"><nav>,85)"><header>,and<footer>
,it's also necessary to includehtml5shivor a similar script.
Cross-browser Issues
Although React is pretty good at abstracting browser differences,some browsers are limited or present quirky behaviors that we couldn't find a workaround for.
onScroll event on IE8
On IE8 theonScroll
event doesn't bubble and IE8 doesn't have an API to define handlers to the capturing phase of an event,meaning there is no way for React to listen to these events. Currently a handler to this event is ignored on IE8.
See theonScroll doesn't work in IE8GitHub issue for more information.
原文链接:/react/307825.html