随笔分类 -  Power apps

摘要:官方文档:https://learn.microsoft.com/en-us/power-apps/maker/portals/configure/enable-multiple-language-support 门户中可以设置很多语言,首先需要在当前环境中启用: 1、打开power Platfor 阅读全文
posted @ 2023-01-04 18:14 整只龙虾 阅读(359) 评论(1) 推荐(0)
摘要:1、Webapi/[表名]/enabled,value=true/false,打开webApi查找; 2、Webapi/[表名]/fields,value=[字段名],[字段名]/*; 3、Site/EnableCustomPluginError,value=true/false,是否显示插件错误信 阅读全文
posted @ 2022-08-31 17:28 整只龙虾 阅读(122) 评论(0) 推荐(0)
摘要:官方文档:webapi-tutorial 1、创建Site Settings 添加要使用表的site settings 两条 格式为: Webapi/[表名]/enabled : 启用此表 Webapi/[表名]/fields: 要查找的字段 如: Webapi/contact/enabled We 阅读全文
posted @ 2022-08-13 12:26 整只龙虾 阅读(278) 评论(7) 推荐(0)
摘要:效果图: 1、获取数据: 在form自定义代码里增加调用action的function function AutomateActionGetProduct(productname,currentPage, pagesize) { var dataproduct = {}; var json_data 阅读全文
posted @ 2022-07-20 20:22 整只龙虾 阅读(342) 评论(0) 推荐(0)
摘要:如果在窗体中需要增加一个自定义按钮执行自定义事件那我们可能需要调用Action 首先我们需要有一个Automate流: 主要需要此三个步骤 所需要的变量名 { "type": "object", "properties": { "filename": { "type": "string" }, "f 阅读全文
posted @ 2022-06-22 17:09 整只龙虾 阅读(248) 评论(0) 推荐(0)
摘要:1、Filter([表名],查询条件&&查询条件),会返回一张表; 2、Search([表名], "值", "字段名"),会返回一张表; 3、LookUp([表名],查询条件),会返回记录类型;LookUp([表名],查询条件,字段名),会返回第三个参数的类型的第一个值; https://docs. 阅读全文
posted @ 2022-02-22 13:17 整只龙虾 阅读(3117) 评论(0) 推荐(1)