소개
게시글
질문&답변
2024.09.24
섹션 6 로드밸런스 : 인스턴스 생성 후 문제
보안그룹에서 http 를 지정을안해줬던겡 원인었습니다ㅜ
- 0
- 3
- 36
질문&답변
2024.09.24
섹션 6 로드밸런스 : 인스턴스 생성 후 문제
AI가 알려준건 안돼네여
- 0
- 3
- 36
질문&답변
2024.07.08
updateform, A user with that username already exists. 에러
저도 같은 문제로 찾아봤어요(+chatgpt활용)views.py# (3)수정뷰 class AccountUpdateView(UpdateView): #해당 CBV를 통해 활용할 모델객체 파라미터 model = User #User 로 모델 지정 #기존 django 제공 UserCreationForm을 리팩토리한 forms.py에서 정의한 AccountUpdatedForm 활용 form_class = AccountUpdateForm #해당 CBV를 통해 반환활 페이지 success_url = reverse_lazy("accountapp:hello_world") # 해당 CBV를 통해 볼 페이지 template_name = "accountapp/update.html" def get_success_url(self): return reverse("accountapp:detail", kwargs={'pk': self.object.pk})forms.pyfrom django.contrib.auth.forms import UserCreationForm from django.contrib.auth.models import User # UserCreationForm 상속 및 재활용 class AccountUpdateForm(UserCreationForm): class Meta: model = User fields = ['username', 'password1', 'password2'] def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) # UserCreationForm 필드 중 username 필드는 수정 못 하도록 잠금 self.fields["username"].disabled = True def clean_username(self): # 현재 사용자명은 이미 존재하는 것으로 간주 return self.instance.username해결이용!
- 3
- 3
- 1.3K
질문&답변
2024.04.10
Rag 모델
음 그렇다면 csv 나 데이터프레임형태의 데이터를 pdf로 내부코드에서 변환하고 이를 split해서 벡터스토어 저장 등의 프로세스로 진행해도 같은 결과일까요??
- 0
- 2
- 331
질문&답변
2024.04.10
text-splitters 설치 중 권한문제
아 다시 설치하고 버젼맞춰서해봤더니 되네요 ㅎㅎ 감사합니다.
- 0
- 2
- 178