728x90
reflex init 을 통해 자동으로 코드를 마이그레이션하고 바로 실행하니 오류를 만난다.
ValueError: Link without a child will not display
링크에 하위객체가 없는 오류를 추가했나보다.
레퍼런스를 체크해보니 이런 코드가 추가된걸 볼 수 있었다.
if href and not len(children):
raise ValueError("Link without a child will not display")
어쩔 수 없이 빈 div 를 추가해줬다.
reflex.link(
reflex.Box(), # 요걸 추가했다.
href=replace_dynamic_route_args(
route=PortfolioDetailPage.route,
portfolio_id=portfolio["id"].to(
str
),
),
position="absolute",
top="0",
left="0",
width="100%",
height="100%",
on_mouse_down=self.state.sync_state,
on_mouse_up=self.state.sync_state,
)
'it > programming' 카테고리의 다른 글
flutter firebase_ml_vision -> google_ml_kit 마이그레이션 비명지르는 게시글 (1) | 2023.09.13 |
---|---|
Pydantic json dumps / Pynecone.io to Reflex.dev migration debugging (0) | 2023.07.14 |
Reflex.dev / Pynecone 이름이 바뀌었다?, 마이그레이션 (0) | 2023.07.14 |