노드 UI 요소
n8n은 사용자가 모든 종류의 데이터 유형을 입력할 수 있도록 (JSON 파일 기반의) 미리 정의된 UI 컴포넌트 집합을 제공합니다. 다음은 n8n에서 사용할 수 있는 UI 요소들입니다. String # 기본 구성: { displayName : Name , // The value the user sees in the UI name : name, // The name used to reference the element UI within the code type : string , required : true , // Whether the field is required or not default : 'n8n' , description : 'The name of the user' , displayOptions : { // the resources and operations to display this element with show : { resource : [ // comma-separated list of resource names ], operation : [ // comma-separated list of operation names ] } }, } 비밀번호 입력을 위한 String 필드: { displayName : 'Password' , name : 'password' , type : 'string' , required : true , typeOptions : { password : true , }, default : '' , description : `User's password` , displayOptions : { // the resources and operations to display this element with show : { resource : [ // comma-separated list of resource names ], operation : [ // comma-separated list of operation names ] } }, } 두 줄 이상을 지원하는 String 필드: { displayName : 'Description' , name : 'description' , type : 'string' , required : true , typeOptions : { rows : 4 , }, default : '' , description : 'Description' , displayOptions : { // the resources and operations to display this element with show : { resource : [ // comma-separated list of resource names ], operation : [ // comma-separated list of operation names ] } }, } 데이터 키에 대한 드래그 앤 드롭 지원 # 사용자는 데이터 값을 드래그 앤 드롭하여 필드에 매핑할 수 있습니다. 드래그 앤 드롭을 하면 데이터 값을 로드하는 표현식