mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
39 lines
1.8 KiB
HTML
Executable File
39 lines
1.8 KiB
HTML
Executable File
<!--
|
|
Copyright JS Foundation and other contributors, http://js.foundation
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<script type="text/x-red" data-help-name="change">
|
|
<p>Setzen, Ändern, Löschen oder Verschieben von Eigenschaften einer Nachricht, eines Flow-Kontextes oder eines globalen Kontextes.</p>
|
|
<p>Der Node kann mehrere Regeln angeben, die in der Reihenfolge ihrer Definition angewendet werden.</p>
|
|
<h3>Details</h3>
|
|
<p>Die verfügbaren Operationen sind:</p>
|
|
<dl class="message-properties">
|
|
<dt>Setze</dt>
|
|
<dd>Setzt eine Eigenschaft. Der Wert kann eine Vielzahl von verschiedenen Typen sein
|
|
oder aus einer bestehenden Nachricht oder einer Kontext-Eigenschaft übernommen werden.</dd>
|
|
<dt>Ändere</dt>
|
|
<dd>Suchen und Ersetzen von Teilen der Eigenschaft. Wenn reguläre Ausdrücke aktiviert sind,
|
|
kann die Eigenschaft "Ersetzen mit" sogenante Capture groups beinhalten, z.B. <code>$1</code>.
|
|
Ersetzen ändert den Typ nur, wenn eine vollständige Übereinstimmung vorliegt.</dd>
|
|
<dt>Löschen</dt>
|
|
<dd>Löscht eine Eigenschaft.</dd>
|
|
<dt>Verschiebe</dt>
|
|
<dd>Verschiebt eine Eigneschft oder benennt sie um.</dd>
|
|
</dl>
|
|
<p>Der Typ "expression" verwendet die Abfrage- und Ausdruckssprache
|
|
<a href="http://jsonata.org/" target="_new">JSONata</a>.
|
|
</p>
|
|
</script>
|