forked from angular/code.angularjs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathangular.Object.copy.html
43 lines (37 loc) · 2.03 KB
/
angular.Object.copy.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<h1>angular.Object.copy</h1>
<div class="angular-object-copy"><h2>Description</h2>
<div class="description"><p>Creates a deep copy of <code>source</code>.</p>
<p>If <code>source</code> is an object or an array, all of its members will be copied into the <code>destination</code>
object.</p>
<p>If <code>destination</code> is not provided and <code>source</code> is an object or an array, a copy is created &
returned, otherwise the <code>source</code> is returned.</p>
<p>If <code>destination</code> is provided, all of its properties will be deleted.</p>
<p>Note: this function is used to augment the Object type in angular expressions. See
<a href="#!angular.Object"><code>angular.Object</code></a> for more info.</p></div>
<h2>Dependencies</h2>
<ul class="dependencies"></ul>
<h2>Usage</h2>
<div class="usage"><div ng:non-bindable=""><pre class="brush: js; html-script: true;">angular.Object.copy(source[, destination]);</pre>
</div>
<h3>Parameters</h3>
<ul class="parameters"><li><code ng:non-bindable="">source – {*} – </code>
<p>The source to be used to make a copy.
Can be any type including primitives, <code>null</code> and <code>undefined</code>.</p></li>
<li><code ng:non-bindable="">destination<i>(optional)</i> – {(Object|Array)} – </code>
<p>Optional destination into which the source is copied.</p></li>
</ul>
<h3>Returns</h3>
<div class="returns"><code ng:non-bindable="">{*}</code>
– <p>The copy or updated <code>destination</code> if <code>destination</code> was specified.</p></div>
</div>
<h2>Example</h2>
<div class="example"><doc:example><doc:source>Salutation: <input type="text" name="master.salutation" value="Hello" /><br/>
Name: <input type="text" name="master.name" value="world"/><br/>
<button ng:click="form = master.$copy()">copy</button>
<hr/>
The master object is <span ng:hide="master.$equals(form)">NOT</span> equal to the form object.
<pre>master={{master}}</pre>
<pre>form={{form}}</pre></doc:source>
</doc:example>
</div>
</div>