Questions tagged as 'promesas'

2
answers

Javascript - use FileReader with Promises

var reader = new FileReader(), file1 = new Blob(['Hola'],{type : 'text/plain'}), file2 = new Blob(['Mundo'],{type : 'text/plain'}), result = null; reader.addEventListener('load',function(event){ result =...
asked by 04.05.2017 / 22:19
2
answers

Update table with ng-repeat does not work

I have a table that is populated with a ng-repeat that iterates over a list of objects. The problem is that when the value of that list changes, the ng-repeat does not refresh the data. To the list I take it from a database through...
asked by 29.09.2016 / 08:58