请教下cc.loader.__getResUuid在2.4.3中如何升级

向大家请教一下,1.9.3升级至2.4.3。
代码:
list.forEach(function (avalue, akey) {
var url = akey, type = avalue;
cc.log(‘url=’ + url +“type=” + type);
var auuid = cc.loader._getResUuid(url, type);
res.push({
// id: auuid,//1.4注释
type: ‘uuid’,
uuid: auuid
});
aMap[auuid] = url;
});
输出日志:
url=/Prefab/ui/mainhome/scenePrefab
type=function cc_Prefab(){
this._super=null;
this.initProps(cc_Prefab);
var cs=cc_Prefab.ctors;
cs[0].apply(this,arguments);
cs[1].apply(this,arguments);
cs[2].apply(this,arguments);
}

报错:Uncaught TypeError: cc.loader._getResUuid is not a function