Hi I have the following rute
options.assetIds = options.assetIds.join(',');
return $state.go(parentState + '.add-to-collection',
options,
null,
{
title: 'Add to collection',
backStack: 'collections',
sideStack: true //use a different sidestack!
})
.then(app.focus);
};
Everything seems to work fine until the option.assetIds is to big , like if exceeds 400-500 elements it shows me following exception :
Exception was thrown at line 14682, column 13 in ms-appx://showpadnv.showpad/public/vendor/angular/angular-execunsafe-1.3.20.js
0x800a139e - JavaScript runtime error: [$rootScope:infdig] 10 $digest() iterations reached. Aborting!
Watchers fired in the last 5 iterations: []
Probably caused by the target URL becoming too large due to the amount of assets ids in the query parameters. Can anyone help me to figure out what is happening? Thanks!!!