멀티플 셀렉트 박스에서 value 값을 받아오는데 성공했습니다.
route_index_sum = ['1-2', '1-4']
이거나
route_index_sum = ['1-2', '1-4', '1-5', '1-7']
이렇게
값이 넘어 옵니다.
이제 이걸 db에 넣어야 하는데
report = RouteReport(
route_lat = route_data['route_lat'],
route_lon = route_data['route_lon'],
route_index = route_index_sum,
route_img = blob_key,
route_text = route_data['route_text'],
date_created = kstime(9)
)
db.session.add(report)
db.session.commit()
그냥 이 대로 넣으려면
route_index_sum = ['1-2', '1-4', '1-5', '1-7']
이런 리스트값을
" '1-2', '1-4', '1-5', '1-7' "
이렇게 한줄의 text로 바꿔서 넣으려 합니다.
이렇게 변환하려면 어떻게 해야하나요?
route_index_sum = multiselect[0] + ', ' + multiselect[1]
그냥 이렇게 하면 선택값이 늘어나는걸 반영하지 못해서 for문을 돌려야 할것같은데.. 텍스트로 append하는 걸 잘 모르겠네요