正好前两天我也在想这个问题,我目前的解决办法是用Patch函数把Gallery里选择的项拷贝到我想要导出的位置(一个sharepoint list),首先在patch里面写好想要拷贝的每一个column对应的数据,然后在这个patch函数外面框一个ForAll,也就是对所有选择的项都做同样的操作。
举个例子哈:ForAll('selectedcollection', Patch('targetdestination', Defaults('targetdestination'),{column1: value1, column2: value2...}))
这里的selectedcollection里面就是你在Gallery里选择出来的records,targetdestination就是指你的导出操作目标位置。
希望对你有帮助~ 🙂