Every line of 'react reload page' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
413 function reloadPage(page) { 414 return page; 415 }
97 async reload() { 98 99 await this[_tab_].reload(); 100 101 await this.waitForNavigation(); 102 }
95 async reload(route) { 96 delete this.components[route]; 97 this.pageLoader.clearCache(route); 98 99 if (route !== this.route) return; 100 101 const { pathname, query } = this; 102 const url = window.location.href; 103 104 this.events.emit('routeChangeStart', url); 105 const routeInfo = await this.getRouteInfo(route, pathname, query, url); 106 const { error } = routeInfo; 107 108 if (error && error.cancelled) { 109 return; 110 } 111 112 this.notify(routeInfo); 113 114 if (error) { 115 this.events.emit('routeChangeError', error, url); 116 throw error; 117 } 118 119 this.events.emit('routeChangeComplete', url); 120 }
90 function reloadPageImpl() { 91 // Hide everything (on entire page, not only $entryPoint) 92 if (nvl(options.clearBody, true)) { 93 $('body').html(''); 94 } 95 96 // Reload window (using setTimeout, to overcome drawing issues in IE) 97 setTimeout(function() { 98 if (options.redirectUrl) { 99 window.location.href = options.redirectUrl; 100 } else { 101 window.location.reload(); 102 } 103 }); 104 }
72 function reload(page) { 73 loading = true; 74 $.domTemplate.getModel('list1').setParamsData({page: page}).reload({appendType: 'page'}, function () { 75 console.info("加载完成") 76 // 设置flag 77 loading = false; 78 $("#page_num").text(page); 79 }); 80 }
72 function reload(page) { 73 loading = true; 74 $.domTemplate.getModel('list1').setParamsData({page: page}).reload({appendType: 'after'}, function () { 75 console.info("加载完成") 76 // 设置flag 77 loading = false; 78 $("#page_num").text(page); 79 }); 80 }
72 function reload(page) { 73 loading = true; 74 $.domTemplate.getModel('list1').setParamsData({page: page}).reload({appendType: 'before'}, function () { 75 console.info("加载完成") 76 // 设置flag 77 loading = false; 78 $("#page_num").text(page); 79 }); 80 }
22 public async reload(): Promise { 23 await this.waitForNavigation(page.evaluate('location.reload()')); 24 }
110 function reload() { 111 const script = "mdViewer_reload()" 112 getMainWindow(mainWindow).webContents.executeJavaScript(script) 113 }
16 function reload () { 17 document.querySelector('.filter-list .filter-item.selected').click(); 18 }