레일즈 소감 Programming/Web 2008. 7. 31. 00:29

레일즈로 코딩하는걸 본 소감...

이것 좀 짱인듯 ㅋㅋ

DB쓰는데 SQL이 필요 없고

컨트롤러에서 작업 할것 진짜 뭐할건지 구현 하나도 없이 써놓기만 하면 알아서 되고

그것 보여주는건 그냥 뷰에서만 하면 되고

간단히 말하면

구현을 찾아볼 수가 없다...

진짜 신기한듯 ㅋㅋ


사용자 삽입 이미지


짤방은 레일즈 책..
<html>
<head>
<script type="text/javascript">
window.onbeforeunload = beforeUnload;

function beforeUnload(){
        return "Are you sure you want to leave?";
}
</script>
</head>
<body>
Please stay on this page!
</body>
</html>

-----------------------------------------------------------
좀 줄여서 쓰고 싶으면

window.onbeforeunload = function()
{
        return "Are you sure you want to leave?";
}
이렇게 써도 되요.


보통은 이렇게 쓰지만..
window.onbeforeunload = function() {
        return "Are you sure you want to leave?";
}