我是移动应用程序的新手,因为我有一个强大的html,js,css背景我决定尝试使用angularjs的cordova。无论如何,我遇到了障碍,我不知道处理这个问题的最佳方法。
我有这个设置重复的块; x.large和x.thumb是通过Angular从json文件中提取的。
<div class="gallery" ng-controller="imagelistController">
<div class="thumbnail" ng-repeat="x in urls">
<a href="{{x.large}}"><img src="{{x.thumb}}"></a>
</div>
</div>
我想使用查询字符串设置单个页面href链接到页面,例如image.html?id = 1。在image.html我希望它显示图像1.如果您将ID更改为2,它将显示图像2.
<div ng-controller="imagelistController">
<img src="{{x.large}}">
</div>
<ul class="social-share">
<li><button onclick="window.plugins.socialsharing.share(null, null, '{{x.large.url}}', null)">image only</button></li>
</ul>
<script type="text/javascript" src="js/SocialSharing.js"></script>