一定要注意浏览器的缓存啊
今天jquery-ui和jquery配合出错:Uncaught TypeError: Cannot read property 'step' of undefined
这里说是因为用了jquery的slim版,没那个函数了。可我用的不是slim版。反正换版本呗。
这里是新浪的CDN.
折腾了一会,还是不行。然后想起来是缓存的事。好在httpd.py改端口很方便,8000换8001,不清缓存也行。
用touch命令改修改文件时间,可能也可以。Windows下装git后就有了。
HTTP Expires header values "0" and "-1" - Stack Overflow
python的SimpleHTTPRequestHandler和Flask,我都没设Expires. 换了图片后,SimpleHTTPRequestHandler清了浏览器缓存才行的,Flask, 在浏览器里刷新,后台看输出确实重传了。
If there is a Cache-Control header with the max-age or s-maxage directive in the response, the Expires header is ignored. 还有no-cache呢。
Cache-Control - HTTP | MDN (mozilla.org)