mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
Fix invalid JSON data in template node (#2322)
This commit is contained in:
committed by
Dave Conway-Jones
parent
a1e10e99fa
commit
ff4d58f648
@@ -34,9 +34,9 @@
|
||||
<pre>こんにちは{{payload.name}}さん。今日は{{date}}です。</pre>
|
||||
<p>というテンプレートに対して、
|
||||
<pre>{
|
||||
date: "月曜日"
|
||||
date: "月曜日",
|
||||
payload: {
|
||||
name: "山田",
|
||||
name: "山田"
|
||||
}
|
||||
}</pre>
|
||||
<p>というメッセージを受信した場合、</p>
|
||||
|
Reference in New Issue
Block a user