728x90

JinjaTemplates에서 사용하는 {{url_for()}}의 parameter가 fastAPI 모듈 Jinja2Templates 모듈 parameter와 달라서 발생 

filename -> path

 

line 707, in url_path_for
    raise NoMatchFound(name, path_params)
starlette.routing.NoMatchFound: No route exists for name "/static" and params "path".

 

 

# AS-IS
<script src="{{url_for('static', filename='vendor/bootstrap/js/bootstrap.bundle.min.js')}}"></script>

# TO-BE
<script src="{{url_for('static', path='vendor/bootstrap/js/bootstrap.bundle.min.js')}}"></script>

 

 

반응형
다했다