我有一个Ajax调用,如下所示。它只在我以调试模式运行时才有效。
使用IE 11,使用F12,在$ .ajax()处放置一个断点,然后调用servlet。如果我正常刷新浏览器(没有JavaScript调试模式),它就不会被提交给Servlet。有帮助吗?谢谢!
import os
from tqdm import tqdm
path = './training_data/car/'
def image_rename():
cnt = 1
for img in tqdm(os.listdir(path)):
if os.path.isfile(path+img):
filename, file_extention = os.path.splitext(path+img)
os.rename(os.path.join(path, img), os.path.join(path,
str('car.') + str(cnt) + file_extention))
cnt +=1
image_rename()
答案 0 :(得分:0)
我认为我通过添加 cache:false 设置解决了这个问题。如果是其他的话,请随时纠正我。谢谢!