在随机更新视觉合成器后,我还没有启动自己,因此上周内制作的几页无法编辑。控制台正在打印以下错误:
for c in chunks:
# different method if single note chunk vs. multi
if type(c) is int:
# give first occurence of correct single notes
single_notes = df1[df1['user_entry_note'] == c]
single_notes_list.append(single_notes)
# for multi chunks
else:
multi_chunk = df1['user_entry_note'].isin(c)
multi_chunk_list.append(multi_chunk)
我没有备份,因此无法回滚到以前的版本。可以编辑较旧的页面,但是较新的页面会导致此错误。
我关注了这个话题: Visual composer doesn't load and gives TypeError: _.template(...).trim is not a function
但是当前的VCS版本是15.00,并且代码结构已更改,因此提供的修复程序对我没有帮助。