Gemlogin Việt Nam
  • Bắt đầu
  • Giới thiệu
  • Bắt đầu nhanh
  • Quy trình tự động
    • Tổng quan
    • Bắt đầu quy trình
    • Khối
    • Dữ liệu chung
    • Bảng
    • Biến
    • Bảng và Biến
    • Biểu thức
    • Vòng lặp
  • Khối
    • General
      • Start
      • End
      • Cmd
      • Image Search
      • Resource Status
      • Delay
      • HTTP Request
      • Browser Request
      • Block Group
      • Clipboard
      • Wait Connections
      • Note
      • Workflow state
      • Switch Extension Popup - Doing
    • Browser
      • Open URL
      • Emulate
      • Network Toggle
      • Switch Tab
      • Go Back
      • Go Forward
      • Close Tab/Window
      • Take Screenshot
      • Handle Dialog
      • Reload tab
      • Get Tab URL
      • Get Info Tabs
      • Cookie
    • Web Interaction
      • Mouse Click
      • Mouse Move
      • Find Text(OCR)
      • Get text
      • Scroll Element
      • Link - doing
      • Attribute Value
      • Input Text
      • Javascript Code
      • Switch Frame
      • Upload File
      • Hover Element - Doing
      • Save Assets
      • Presskey
      • Create Element
    • Data
      • Random
      • Gemini AI
      • Chat GPT
      • DeepSeek AI
      • Blackbox AI
      • Insert Data
      • Delete Data
      • Get Log Data
      • Slice Variable
      • Increase Variable
      • RegEx Variable
      • Data Mapping
      • Split Data
      • Sort Data
    • Control flow
      • Repeat Task
      • Conditions
      • Element Exists
      • While Loop - Doing
      • Loop Data
      • Loop Breakpoint
    • Online services
      • Read File Text
      • Excel
      • Google Sheets
      • File Action
      • IMAP (Read Mail)
  • Tài liệu API
    • Danh sách profiles
    • Lấy thông tin profile
    • Tạo profile
    • Mở profile
    • Đóng profile
    • Cập nhật profile
    • Xóa profile
    • Danh sách nhóm
Powered by GitBook
On this page
  1. Khối
  2. Data

Data Mapping

Bản đồ dữ liệu của một biến hoặc bảng.

Nguồn dữ liệu Nguồn dữ liệu để ánh xạ có thể là một biến hoặc bảng.

  • Bản đồ dữ liệu Bản đồ dữ liệu là nơi bạn khớp các trường nguồn với các trường đích bằng cách nhập ký hiệu dấu chấm. Nguồn có thể có nhiều đích. Ví dụ, khi bạn có dữ liệu như bên dưới

[
	{
		"address": "2204 Volutpat Rd.",
		"name": "Palmer Porter",
		"phone": "(251) 595-5203",
		"email": "phasellus.dolor@aol.org",
		"postalZip": "8517",
		"country": "United States"
	},
	{
		"address": "2741 Dis Rd.",
		"name": "Byron Bowers",
		"phone": "(563) 717-9312",
		"email": "mattis.ornare@outlook.couk",
		"postalZip": "5612",
		"country": "Costa Rica"
	},
	{
		"address": "Ap #923-7718 Sed Rd.",
		"name": "Joseph Waller",
		"phone": "1-897-102-6811",
		"email": "cras.pellentesque@outlook.edu",
		"postalZip": "38-251",
		"country": "Belgium"
	}
]

và có bản đồ dữ liệu như sau.

Dữ liệu sẽ được chuyển thành

[
	{
		"email": "phasellus.dolor@aol.org"
		"full_name": "Palmer Porter",
		"address": {
			"street": "2204 Volutpat Rd.",
			"postalZip": "8517",
			"country": "United States"
		},
	},
	{
		"email": "mattis.ornare@outlook.couk",
		"full_name": "Byron Bowers",
		"address": {
			"street": "2741 Dis Rd.",
			"postalZip": "5612",
			"country": "Costa Rica"
		},
	},
	{
		"email": "cras.pellentesque@outlook.edu",
		"full_name": "Joseph Waller",
		"address": {
			"street": "Ap #923-7718 Sed Rd."
			"postalZip": "38-251",
			"country": "Belgium"
		}
	}
]

  • Gán cho biến Có thể gán dữ liệu được ánh xạ vào một biến hoặc không.

    • Tên biến Chọn tên của biến được dùng để gán dữ liệu sau khi ánh xạ

  • Chèn vào bảng Có thể gán dữ liệu được ánh xạ vào một bảng hoặc không

    • Chọn cột Cột nơi dữ liệu được ánh xạ sẽ được chèn vào.

PreviousRegEx VariableNextSplit Data

Last updated 6 months ago