我试图在我现有的AngularJS应用程序中使用
anuglar-slider.
我从作者的github下载了下面的文件(头标记),并添加到我的index.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
浏览器中没有任何滑块渲染.然而,应用程序中较早的角色特定功能仍然可行,浏览器控制台中没有错误.
如果您无法找到上述问题,请随时建议在AngularJS应用程序中实现范围滑块.
我对AngularJS很新