我在Midi播放器上遇到一些问题。我想自动重现保存在Django模型Field中的midi文件,具体来说就是mi field midi,它保存了一个真实的midi文件。这是我正在使用的HTML模板:
<body style="margin-top: 250px;">
<h2 style="margin: 115px auto 4px auto; font-size: 20px;">BareBones MIDI</h2>
<button id="load">Choose Tune</button>
<input id="filein" type="file" accept=".mid, .midi" style="display: none;">
<div id="title" style="margin: 3px; font-size: 10px; font-style: italic; white-space: nowrap;"></div>
<div style="margin-left: 845px">
<button id="control">▶</button>
<progress style="width:800px; height: 30px"></progress>
</div>
</body>
目前,它使用输入tu上载文件,但是我想对其进行修改并更改代码,以便自动生成django model字段的midi文件,而无需输入。在我的JS代码中,我尝试通过以下方式访问该字段:
let cancion_midi = {{cancion.midi}};
但这会引发以下错误:
ReferenceError: tiger_qNDnPUI is not defined
我不知所措,找不到任何解决方案。如果有人可以帮助我,我将不胜感激。如有任何疑问,请问我。