我已经使用表单向导尝试了 Angular 中的 jquery passthrough,效果很好。但是,现在我遇到了一个问题。当 formwizard 中的步骤在指令内时,jquery passthrough 似乎不起作用(所有步骤都显示,而不是只显示第一个步骤):
<form ui-jq="formwizard" ui-options="{formPluginEnabled: false, validationEnabled: false, focusFirstInput : false, disableUIStyles : true}" ng-submit="create(currentActivity, selectedCategories)" class="main">
<!--STEP 1 -->
<div activity-wizard-step title="Class Activity Info" description="Add all info about the activity" src="resources/angular/templates/activity_wizard/activity_info.html" step-number="1"></div>
<!-- STEP 2 -->
<div activity-wizard-step title="Add Class(es)" description="dd Instructor-Led-Training (ILT) Classes below. It can be a classroom ILT or a Webinar ILT and contain 1 or more sessions." src="resources/angular/templates/activity_wizard/add_class.html" step-number="2"></div>
</form>
这是我的 activityWizardStep 指令的样子:
directivesModule.directive('activityWizardStep', function () {
return {
replace: true,
restrict: 'AE',
scope: {
title: '@',
description: '@',
src: '@',
stepNumber: '@'
},
templateUrl: 'resources/angular/templates/activity_wizard/wizard_step.html'
}
});
和wizard_step.html:
<fieldset class="step" id="step{{stepNumber}}">
Some html
</fieldset>
就像我之前说的,所有的步骤都会一直显示。我认为这是某种时间问题,例如当 jquery passthrough 尝试初始化 formwizard 时,指令或包含不在 dom 中。这是正在发生的事情吗?如果是这样,我应该使用 $timeout somehwere 吗?如果是这样,我会把它放在哪里。也许有更好的方法。有什么想法吗?