You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
안녕하세요. Persist 데모 페이지 제일 아래쪽을 확인해보시면 해당 예제를 확인해보실 수 있습니다.
판마다 key만 달리하여 지정해주시면 될 것 같습니다.
constpersist=neweg.Persist("commentModule");$(".loadCmtBtn").on("click",function(){// Make change to the component. (append comments) $.get("/api/123/nextcomment",function(commentHtml){$(".commentContainer").append(commentHtml);// Save snapshot of the component when there is a changevarsnapshot=$(".commentContainer").html();persist.set("commentsHTML",snapshot);});});// Restore state when initiate componentif(!persist.get("")===null){varcommentsHTML=persist.get("commentsHTML");$(".commentContainer").html(commentsHTML);}
네이버와 같은 여러 판으로 구성되어있는 사이트내에서 persist를 응용하여 히스토리 BACK시에 화면 구성을 하려고 할때
HTML각각 판을 저장할 수 있는 방법이 있을까요?
The text was updated successfully, but these errors were encountered: