在Power Automate中设置对象(object)变量或判断对象变量(object)是否为null/empty

前言

近期在使用Power Automate时候用到了对象(object)变量,比如初始化对象(object)变量以及判断对象(object)变量是否为空,在过程中遇到点儿小插曲,故作记录在此

问题描述

首次在设置对象(object)变量为空后(null)直接报错了,报错信息为:BadRequest. 无法使用类型为“String”的值来初始化或更新类型为“Object”的变量“UserOrGroupName”。变量“UserOrGroupName”只支持类型为“Object”的值

如何设置为null或empty

初始化如下(设置类型为对象)

在Power Automate中设置对象(object)变量或判断对象变量(object)是否为null/empty_第1张图片

当时设置方法如下(错误)

在Power Automate中设置对象(object)变量或判断对象变量(object)是否为null/empty_第2张图片

修改后设置方法如下(正确)

在Power Automate中设置对象(object)变量或判断对象变量(object)是否为null/empty_第3张图片

如何判断对象(object)变量为null/empty

直接使用empty(变量名)函数,结果返回true或false

在Power Automate中设置对象(object)变量或判断对象变量(object)是否为null/empty_第4张图片

使用场景

项目中需要在power automate中创建SharePoint项,由于其中有【用户或组控件】,创建时候需要对象数组(可参考如下代码item/AssignmentUsers)

在Power Automate中设置对象(object)变量或判断对象变量(object)是否为null/empty_第5张图片
{
    "host": {
        "connectionReferenceName": "shared_sharepointonline",
        "operationId": "PostItem"
    },
    "parameters": {
        "dataset": "https://SharePoint web url",
        "table": "list guid",
        "item/Title": "title",
        "item/WebName": "webname",
        "item/DocumentName": "document name",
        "item/DocumentGUID": "document list guid",
        "item/FileUrl": "fileurl",
        "item/FileName": "file name",
        "item/AssignmentUsers": [
            {
                "Claims": "sharepoint user group login name"
            },
            {
                "Claims": "i:0#.f|membership|[email protected]"
            }
        ],
        "item/FileUniqueID": "file unique id"
    }
}

你可能感兴趣的:(sharepoint,Power,Automate,sharepoint,Power,Automate)