에러 해결이 안됩니다..
겨슬
2024.10.16
public static Result tasks() { return ok( views.html.index.render(Shareboard.all(), taskForm) ); }저 render에서 에러가 뜨는데 메세지가The method render(String) in the type index is not applicable for the arguments (ListShareboard,FormShareboard)이렇게 뜨구요인덱스 형 안에 render스트링은 리스트랑 폼에서 사용할 수 없는 요소라는 뜻인거 같은데
public static ListShareboard all() { return find.all(); }
public static void create(Shareboard task) { task.save(); }
public static void delete(Long id) { Shareboard.ref(id).delete(); }
private static Model ref(Long id2) { // TODO Auto-generated method stub return null; }
리스트 부분이 이렇게 생겼습니다. 어디를 수정해줘야된나요.. 이거 저거 다해봤는데 해결이 도무지 안됩니다..
-
진주 2024-10-16
views.html.index 가 지칭하는 객체의 render method를 확인해 봐야 할듯.
-
제나 2024-10-16
ㅎㅇ