PowerApps如果textfield为空,请不要修补其他补丁

问题描述 投票:0回答:1

我正在编写补丁但在修补之前我需要检查一些文本字段和下拉列表不是空白。我无法使用语法,下面是我的代码

If(!IsBlank(TextInput5_1.Text), "true", "true"), Patch(BookingTest, { Title: title, EventDate: TextInput5_1.Text });

仅当输入或选择字段不为空时我才需要修补。

powerapps powerapps-formula
1个回答
0
投票

我需要通过修剪删除所有值,然后执行检查,如下所示:

If(!IsBlank(Trim(TextInput5_1.Text)), Patch(BookingTest,
{ Title: title, EventDate: TextInput5_1.Text });

现在是时候连接其余的值......

© www.soinside.com 2019 - 2024. All rights reserved.