我正在使用angular-ui-tour使我的项目能够在同一个 DOM 中进行多个游览,因为它有一个分离的游览选项,我需要这样做。
我的依赖项(与此问题相关):
- 角度 1.5.7
- 引导程序 ^3.3.6
- 角度引导^2.0.0
- 角度-ui-tour ^0.6.2
我可以使用相应的配置初始化游览,但是当我检查步骤时,没有找到任何步骤。
当我尝试开始游览时,错误确认了这一点:“没有步骤。”-错误。我在这里想念什么?
angular.module('myApp',['bm.uiTour']).run(['uiTourService',
function(uiTourService) {
//setup the tour
uiTourService.createDetachedTour('general', {
name: 'general',
backdrop: true,
debug: true
});
//testing
var uitour = uiTourService.getTourByName('general');
console.log(uitour); // Object {_name: undefined, initialized: true}
//test tour steps
console.log(uitour._getSteps()); // []
//test tour start
uitour.start().then(function(data) {
//tour start succeeded
}, function(error) {
//tour start failed
console.log(error); // No steps.
});
}
]);
<body ui-tour>
<div tour-step tour-step-belongs-to="general"
tour-step-order="1"
tour-step-title="step 1"
tour-step-content="this is step 1">
</div>
<div tour-step tour-step-belongs-to="general"
tour-step-order="2"
tour-step-title="step 2"
tour-step-content="this is step 2">
</div>
</body>