我正在尝试在我现有的 AngularJS 应用程序中使用anuglar-slider 。
我在这里关注了作者的评论
我从作者的 github 下载了以下文件(在 Head 标签中)并添加到我的index.html
HTML 代码:
<head>
<link rel="stylesheet" href="css/angular-slider.css">
<script src="js/vendor/angular-slider.js"></script>
</head>
<body>
<slider floor="10" ceiling="60" ng-model-low="lowValue" ng-model-high="highValue"></slider>
</body>
App.js(角度代码)。我按照作者的说明添加了第二行,我怀疑我在那里做错了什么
var app = angular.module('myApp', [])
angular.module('uiSlider', []);
app.constant('Config',
{
baseURL : "http://blah",
httpTimeout : 36000
});
app.config(function($logProvider) {
$logProvider.debugEnabled(true);
});
//and some other app specific code follows
我在浏览器中看不到任何滑块渲染。但是,应用程序中较旧的 Angular 特定功能仍然有效,并且浏览器的控制台中没有错误。
如果您在上面找不到问题,请随时建议任何其他方式在 AngularJS 应用程序中实现范围滑块。
我对AngularJS相当陌生
如果您希望我也在这里发布作者的库文件代码,请告诉我。