From 435d9f9c8cf0f1c60e23e0e73757f9dfe9e8680c Mon Sep 17 00:00:00 2001 From: wuyongning Date: Tue, 29 Mar 2022 08:57:22 +0800 Subject: [PATCH] update database-distributedobject-guidelines.md Signed-off-by: wuyongning --- .../database/database-distributedobject-guidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zh-cn/application-dev/database/database-distributedobject-guidelines.md b/zh-cn/application-dev/database/database-distributedobject-guidelines.md index 24f54aab73..8a346b90f5 100644 --- a/zh-cn/application-dev/database/database-distributedobject-guidelines.md +++ b/zh-cn/application-dev/database/database-distributedobject-guidelines.md @@ -82,7 +82,7 @@ ```js //发起方 var local_object = distributedObject.createDistributedObject({name:"jack", age:18, isVis:true, - parent:{mother:"jack mom",father:"jack Dad"},[{mother:"jack mom"}, {father:"jack Dad"}]}; + parent:{mother:"jack mom",father:"jack Dad"},list:[{mother:"jack mom"}, {father:"jack Dad"}]}); local_object.setSessionId(sessionId); //被拉起方 -- GitLab