From c30334c75efc7dc5ddd8f021aa693f3ffd980150 Mon Sep 17 00:00:00 2001 From: thinkinggis Date: Thu, 6 Feb 2020 22:06:29 +0800 Subject: [PATCH] =?UTF-8?q?fix(docs):=20=20=E8=AF=AD=E6=B3=95=E9=94=99?= =?UTF-8?q?=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/api/source/source.en.md | 2 +- docs/api/source/source.zh.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/api/source/source.en.md b/docs/api/source/source.en.md index 79f9407be7..a64f5ee322 100644 --- a/docs/api/source/source.en.md +++ b/docs/api/source/source.en.md @@ -176,7 +176,7 @@ const data2 = [ layer.source(data,{ transforms:[ - type: 'join' + type: 'join', sourceField: 'name' //data1 对应字段名 targetField: 'city' // data 对应字段名 data: data2, diff --git a/docs/api/source/source.zh.md b/docs/api/source/source.zh.md index ca3015822b..2df01e2c79 100644 --- a/docs/api/source/source.zh.md +++ b/docs/api/source/source.zh.md @@ -179,8 +179,8 @@ const data2 = [ layer.source(data,{ transforms:[ type: 'join' - sourceField: 'name' //data1 对应字段名 - targetField: 'city' // data 对应字段名 + sourceField: 'name', //data1 对应字段名 + targetField: 'city', // data 对应字段名 data: data2, ] })