Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/django/23.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Collections Powerapp-更新存储在集合中的json数据中的国家/地区值_Collections_Powerapps Canvas - Fatal编程技术网

Collections Powerapp-更新存储在集合中的json数据中的国家/地区值

Collections Powerapp-更新存储在集合中的json数据中的国家/地区值,collections,powerapps-canvas,Collections,Powerapps Canvas,如何修改收藏中的“国家/地区”? { info: { "resourceType": "Patient", "id": "53", "gender": "female", "birthDate": "1989-07-30", "address

如何修改收藏中的“国家/地区”?

{
    info: {
        "resourceType": "Patient",
        "id": "53",
        "gender": "female",
        "birthDate": "1989-07-30",
        "address": [
            {
                "line": [
                    "Alexandra Lights",
                    "Apt. 3207"
                ],
                "city": "Avon",
                "state": "MA",
                "postalCode": "1111",
                "country": "India"
            }
        ]
    }
}
尝试使用更简单的数据:

步骤1(点击按钮创建数据的公式):

收集(SampleData,{info:“初始值”})

步骤2(点击按钮更新数据的公式):

修补程序(SampleData,默认值(SampleData),{info:“新数据”})

结果:

SampleData={info:“新数据”}