我在同一个文件夹中有两个咖啡脚本文件 A 和 B。我希望 A 执行到某个点,然后运行 B,然后继续执行。换句话说,我想要这个:
//in A
$("#content").html(@currentView.el)
require ['B']
//in B
if document.location.href.indexOf("showdiv") > 0
$("#content").trigger('click')
但是,如果我将所有内容都放入 A,它可以正常工作:
//in A
$("#content").html(@currentView.el)
if document.location.href.indexOf("showdiv") > 0
$("#content").trigger('click')
我怎样才能让第一个片段工作?require 关键字是否使编译的 javascript 并行加载?