AngularJS 入门教程之事件处理器详解
在这一步,你会在手机详细信息页面让手机图片可以点击。
请重置工作目录:
git checkout -f step-10
手机详细信息视图展示了一幅当前手机的大号图片,以及几个小一点的缩略图。如果用户点击缩略图就能把那张大的替换成自己那就更好了。现在我们来看看如何用angularjs来实现它。
步骤9和步骤10之间最重要的不同在下面列出。你可以在github里看到完整的差别。
控制器
app/js/controllers.js
... function phonedetailctrl($scope, $routeparams, $http) { $http.get('phones/' + $routeparams.phoneid + '.json').success(function(data) { $scope.phone = data; $scope.mainimageurl = data.images[0]; }); $scope.setimage = function(imageurl) { $scope.mainimageurl = imageurl; } } //phonedetailctrl.$inject = ['$scope', '$routeparams', '$http'];
在phonedetailctrl控制器中,我们创建了mainimageurl模型属性,并且把它的默认值设为第一个手机图片的url。
模板
app/partials/phone-detail.html
<img ng-src="{{mainimageurl}}" class="phone"> ... <ul class="phone-thumbs"> <li ng-repeat="img in phone.images"> <img ng-src="{{img}}" ng-click="setimage(img)"> </li> </ul> ...
我们把大图片的ngsrc指令绑定到mainimageurl属性上。
同时我们注册一个ngclick处理器到缩略图上。当一个用户点击缩略图的任意一个时,这个处理器会使用setimage事件处理函数来把mainimageurl属性设置成选定缩略图的url。
测试
为了验证这个新特性,我们添加了两个端到端测试。一个验证主图片被默认设置成第一个手机图片。第二个测试点击几个缩略图并且验证主图片随之合理的变化。
test/e2e/scenarios.js
... describe('phone detail view', function() { ... it('should display the first phone image as the main phone image', function() { expect(element('img.phone').attr('src')).tobe('img/phones/nexus-s.0.jpg'); }); it('should swap main image if a thumbnail image is clicked on', function() { element('.phone-thumbs li:nth-child(3) img').click(); expect(element('img.phone').attr('src')).tobe('img/phones/nexus-s.2.jpg'); element('.phone-thumbs li:nth-child(1) img').click(); expect(element('img.phone').attr('src')).tobe('img/phones/nexus-s.0.jpg'); }); }); });
你现在可以刷新你的浏览器,然后重新跑一遍端到端测试,或者你可以在angularjs的服务器上运行一下。
练习
为phonedetailctrl添加一个新的控制器方法:
$scope.hello = function(name) { alert('hello ' + (name || 'world') + '!'); }
并且添加:
<button ng-click="hello('elmo')">hello</button>
到phone-details.html模板。
总结
现在图片浏览器已经做好了,我们已经为步骤11(最后一步啦!)做好了准备,我们会学习用一种更加优雅的方式来获取数据。
以上就是angularjs 事件处理器的资料整理,后续继续补充,谢谢大家对本站的支持!