300x250
반응형
문제상황
콘솔
코드
@bp.route("/<string:tenantName>", methods=['GET'])
def get():
return "..."
브라우저
해결
url로 받은 파라메터를 함수에 안넣어줘서 생긴 에러
def get(tenantName): <- 이렇게 넣어주면 됨
@bp.route("/<string:tenantName>", methods=['GET'])
def get(tenantName):
return "..."
300x250
반응형
'IT > 파이썬' 카테고리의 다른 글
플라스크 sqlalchemy 조인 에러 : Could not determine join condition between parent/child tables on relationship TenantRoles.tenant - there are no foreign keys linking these tables (0) | 2021.06.16 |
---|---|
파이참 프로젝트 루트 디렉토리 이름 변경 안되는 문제 (java.io.ioexception cannot rename) (0) | 2021.06.14 |
[플라스크] 앵커로 스크롤 유지하기 (0) | 2021.06.01 |
[점프투플라스크] 이미 추천했습니다 띄우기 (0) | 2021.06.01 |
[플라스크] 다대다 관계 모델 설정 (SQLAlchemy) (0) | 2021.05.31 |