我开始使用Angularjs。我有这个工作正常。
动态创建的侧边栏列出了所有样式。 有一个动态创建的导航栏,用于与该样式相关联的尺寸。
点击的样式是"选择"正常。 点击大小时,选择""正常。
我希望这两个选项成为我获取并在特定DIV中显示的网址中的参数。因此,网址看起来像...... http://xxxddd.com/inventory/ {{style}} / {{size}}
我完全不知道从哪里开始。
<script>
var app = angular.module("alt", []);
app.controller('StyleController', function(){
this.style = '';
this.selectStyle = function(newValue){
this.style = newValue;
};
this.isSelected = function(styleName){
return this.style === styleName;
};
});
app.controller('SizeController', function(){
this.size = '';
this.selectSize = function(newValue){
this.size = newValue;
};
this.isSelected = function(sizeName){
return this.size === sizeName;
};
});
</script>
我很有棱角。我希望有一个人可以帮助我。这是我项目的主要挂钩。
提前致谢。
答案 0 :(得分:0)
您需要创建一个利用AngularJS&#39; $http库发出GET请求。查看文档并了解如何传递参数(样式/大小)。
然后你会想要使用AngularJS&#39; Dependency Injection (DI)将您的服务注入您的控制器并调用其$http
调用方法。