谁能帮我这个功能?我不知道如何使用它,因为我不知道第一个参数“identity”应该有什么值。
SP.BusinessData.Entity.findSpecific(identity, specificFinderName, lobSystemInstance)
我有specificFinderName
和lobSystemInstance
但不是identity
。当我尝试以这种方式创建一个EntityIdentity类型的新对象时......
SP.BusinessData.Entity.findSpecific(new SP.[...].EntityIdentity(), specificFinderName, lobSystemInstance)
我在new SP.[...].EntityIdentity()
上收到错误(args不能为空)。
当我以这种方式尝试时
SP.BusinessData.Entity.findSpecific(SP.[...].EntityIdentity.newObject(myContext), specificFinderName, lobSystemInstance)
我在SP.[...].EntityIdentity.newObject(myContext)
上收到错误(值不能为null,参数名称:idetifierValues)
谁使用过sp.js的这个功能(SharePoint,JSOM),请帮忙......