index.html.erb와 BackboneJS의 결합
서버에서 index.html.erb 파일과 JS는 어떻게 결합되고 동작하는가?
$(document).ready(function () { let MainView = Backbone.View.extend({ el: "#temp-view", initialize: function () { console.log("MainView"); this.current_view = null; }, ...
Last updated