首页 > 其他分享 >使用 WebAPI获取实体的复数名称

使用 WebAPI获取实体的复数名称

时间:2022-12-13 23:24:06浏览次数:56  
标签:WebAPI function console log 获取 result 复数

Xrm.Utility.getEntityMetadata("opportunity", "")
    .then(function (result) {
        console.log("当前实体的复数名称:" + result.EntitySetName);
    }, function (error) {
        console.log(error);
    });

标签:WebAPI,function,console,log,获取,result,复数
From: https://www.cnblogs.com/ynysj/p/16980960.html

相关文章