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