We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
day08 www/transwarp/web.py 1479行 return fn(*args) 若args为'static/js/awesome.js' 则在call函数中接受到的参数为 ('s','t','a'.'t','i' ......'.','j','s') 无法加载静态资源,修改为 return fn(args) 正常显示
The text was updated successfully, but these errors were encountered:
No branches or pull requests
day08 www/transwarp/web.py 1479行
return fn(*args)
若args为'static/js/awesome.js'
则在call函数中接受到的参数为
('s','t','a'.'t','i' ......'.','j','s')
无法加载静态资源,修改为
return fn(args)
正常显示
The text was updated successfully, but these errors were encountered: