Fix: HTTP request node PARAMS parameters, if ':' appears in the value… (#4403)

Co-authored-by: Haolin Wang-汪皓临 <haolin.wang@atlaslovestravel.com>
This commit is contained in:
wanghl 2024-05-18 10:35:01 +08:00 committed by GitHub
parent ba06447cd5
commit e90eccdf92
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,11 +6,11 @@ import type { KeyValue } from '../types'
const UNIQUE_ID_PREFIX = 'key-value-' const UNIQUE_ID_PREFIX = 'key-value-'
const strToKeyValueList = (value: string) => { const strToKeyValueList = (value: string) => {
return value.split('\n').map((item) => { return value.split('\n').map((item) => {
const [key, value] = item.split(':') const [key, ...others] = item.split(':')
return { return {
id: uniqueId(UNIQUE_ID_PREFIX), id: uniqueId(UNIQUE_ID_PREFIX),
key: key.trim(), key: key.trim(),
value: value?.trim(), value: others.join(':').trim(),
} }
}) })
} }