如何阻止“GET”被记录

时间:2016-10-25 03:11:08

标签: javascript node.js express pug

每当使用select * from (select date,account,dr from sys_credit_debit where dr != 0) as t1, (select date,account,cr from sys_credit_debit where cr != 0) as t2 href加载某些内容时,我的调试控制台中会记录src如何阻止记录此内容。

每次加载页面时都会发生这种情况。使用Node.js,Express和Pug。

头脑中

GET

调试控制台

link(rel='stylesheet'ref='https://maxcdn.bootstrapcdn.com/bootstrap/3...')
link(rel='stylesheet', href='/stylesheets/style.css')
link(rel='stylesheet' href='/stylesheets/magnific-popup.css')
script(type='text/javascript' src='/js/jquery.min.js')
script(src='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstr...')
script(src="/js/jquery.magnific-popup.min.js")
script(src="/js/jquery.magnific-popup.js")
script(src='/js/jssor.slider.mini.js')
script(src='/js/socket.io.js')
埃米尔·伯杰龙 它发生在开发期间,现在在实时服务器上。与我使用的浏览器无关。

GET /stylesheets/style.css 200 8.784 ms - 8668
GET /stylesheets/magnific-popup.css 304 4.629 ms - -
GET /js/jssor.slider.mini.js 304 4.195 ms - -
GET /js/jquery.magnific-popup.min.js 304 6.541 ms - -
GET /js/jquery.magnific-popup.js 404 7.940 ms - 40
GET /js/jquery.min.js 304 12.245 ms - -
GET /js/socket.io.js 304 0.623 ms - -

1 个答案:

答案 0 :(得分:-2)

你能确保你的调试控制台没有禁用你的浏览器缓存吗?

enter image description here