javascript - I got a Missing name after . operator -


hey got missing name after . operator trying run script on editor , have been searching , trying methods mentioned here , not working !!

  if (json.status && json.status.code == 401) { //if token expired, new 1 , retry       _.getnewtoken().then(function () {      **_.request(uri, *options).then(deferred.resolve).catch(deferred.reject);***         });         } else {         deferred.resolve(json);         }         } catch (e) {         deferred.resolve(body);         }}}; 


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -