파이썬 class를 직렬화하여 자바스크립트로 전달하는 방법
질문 플라스크의 자바스크립트에 변수를 전달하려고합니다.하지만 다음 오류가 발생합니다. TypeError : Object of type MyClass is not JSON serializable 암호: route.py : @app.route('/') @app.route('/index') def index(): data = { "foo": myObj } return render_template('index.html', data=data) myObj 는 MyClass 유형의 사용자 정의 class 객체입니다. index.html : my_script.js : console.log(data); {{data | tojson}}대신 {{data}} 를 작성하려고했지만 오류가 발생합니다.Uncaught SyntaxE..