我正在尝试在选择节点时选择子边和子节点。我尝试了以下功能:
cy.on('tap', 'node', function(event){
this.outgoers().select();
}
但似乎我无法使用'tap'。 我也试过'select'确实有效,但所有的子节点都被选中(直到叶子被选中)(这是预期的)。
有没有办法用'tap'来实现它,或者'select'的递归调用能否以某种方式受到限制?
提前致谢
答案 0 :(得分:0)
选项1:暂停'select'
来电。似乎默认选择事件覆盖了您之前的呼叫。
选项2:绑定到[Route("{action=index}")]
public class HomeController : Controller
{
public ActionResult Index()
{
return View(HomeModelBuilder.BuildHomeModel());
}
public ActionResult FormsHome()
{
return View(HomeModelBuilder.BuildFormsHomeModel());
}
}
,以便您知道默认选择事件已经发生。