You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.1 KiB
35 lines
1.1 KiB
9 years ago
|
---
|
||
|
id: clone-with-props-it-IT
|
||
|
title: Clonare ReactElements
|
||
|
permalink: clone-with-props-it-IT.html
|
||
|
prev: test-utils-it-IT.html
|
||
|
next: create-fragment-it-IT.html
|
||
|
---
|
||
|
|
||
|
> Nota:
|
||
|
> `cloneWithProps` è deprecato. Usa [React.cloneElement](top-level-api.html#react.cloneelement) al suo posto.
|
||
|
|
||
|
In rare condizioni, potresti voler creare una copia di un elemento React con proprietà diverse da quelle dell'elemento originale. Un esempio è clonare gli elementi passati come `this.props.children` ed effettuarne il rendering con proprietà diverse:
|
||
|
|
||
|
```js
|
||
|
var _makeBlue = function(element) {
|
||
|
return React.addons.cloneWithProps(element, {style: {color: 'blue'}});
|
||
|
};
|
||
|
|
||
|
var Blue = React.createClass({
|
||
|
render: function() {
|
||
|
var blueChildren = React.Children.map(this.props.children, _makeBlue);
|
||
|
return <div>{blueChildren}</div>;
|
||
|
}
|
||
|
});
|
||
|
|
||
|
React.render(
|
||
|
<Blue>
|
||
|
<p>Questo testo è blu.</p>
|
||
|
</Blue>,
|
||
|
document.getElementById('container')
|
||
|
);
|
||
|
```
|
||
|
|
||
|
`cloneWithProps` non trasferisce gli attributi `key` o `ref` agli elementi clonati. Le proprietà `className` e `style` sono automaticamente riunite.
|