내 HTML 코드를 클릭하여 다시로드하는 방법 : 아약스 호출버튼을 벽돌이 문서를 준비하여 Ajax 호출 NG 반복을 사용하여 레코드를 표시하는
<ul class="list-no-infinity pinterest-items clearfix" id="container">
{% csrf_token %}
<li ng-show="mealPlansExists" class="masonryImage item" ng-repeat="(key, mealplan) in mealplans" style="">
<article class="post-article">
<figure class="figure-hubba">
<img ng-show="mealplan.mp_image" class="img-responsive" src="{$mealplan.mp_image | filterProfImgUrl $}" alt="tools you need for better meal planning">
<img ng-hide="mealplan.mp_image" class="img-responsive" alt="tools you need for better meal planning" src="{% static 'mpb/assets/img/mp_no.jpg' %}">
<div class="overlay overlay-black-70"></div>
<figcaption class="figcaption">
<a href="/mpb/mealplandetails/{$ mealplan.id$}/" class="icon">View</a>
</figcaption>
</figure>
<header class="post-header clearfix">
<h1 title="{$ mealplan.mp_name$}">{$ mealplan.mp_name | cut:true:25:' ...'$}</h1>
<div class="small post-author">
By: {$ mealplan.mp_by $}
</div>
<!-- /.post-author -->
<div class="post-date">
{$ mealplan.mp_created_at | date: 'M d, yyyy' $} {$ mealplan.mp_date$}
</div>
</header>
<p title="{$ mealplan.desc $}">{$ mealplan.desc | cut:true:38:' ...'$}</p>
<footer>
<a ng-if="mealplan.subscribed == 1" class="btn btn-success btn-block" href="">Open</a>
<a ng-if="mealplan.subscribed == 0" class="btn btn-success btn-block" href="#" ng-click="subScribeMealplan(mealplan.id)">Start Cooking</a>
<!-- Rating -->
<div ng-if="mealplan.avg_rating>=1" ng-init="rating = mealplan.avg_rating" class="post-icons">
<a href="#">(<span class="mp_red">{$mealplan.subscriber_count$}</span>) Cooking </a>
<div ng-click="up" class="stars pull-right" rating-count="mealplan.rating_count" class="star-rating" star-rating rating-value="rating" data-max="5">
</div>
</div>
<div ng-if="mealplan.avg_rating == 0" ng-init="rating = star.rating -1" class="post-icons">
<a href="javascript:;">(<span class="mp_red">{$mealplan.subscriber_count$}</span>) Cooking </a>
<div class="stars pull-right" rating-count="0" class="star-rating" star-rating rating-value="rating" data-max="5">
</div>
</div>
</footer>
</article>
</li>
</ul>
각도 코드 NG-반복에 및로드 데이터를 :
$http.post('/mpb/getallmealplans/', $scope.mpPostData)
.success(function(response) {
if (response != 0) {
$('.item').masonry('destroy');
if (response.is_more_records) {
$scope.is_more_records = true;
}
$scope.mealplans = response.mealplans.details;
$scope.mpPostData.mp_offset = $scope.mpPostData.mp_offset + $scope.mpPostData.mp_limit;
$scope.mpPostData.mp_limit = $scope.mpPostData.mp_limit + $scope.mpPostData.mp_limit;
$scope.mealPlansExists = true;
} else {
$('section#bottomBar.bottom-bar div.container').addClass("footer-no-results");
$scope.is_more_records = false;
$scope.mealPlansExists = false;
}
});
벽돌을 사용하여 페이지에 다른 크기의 li 태그를 정렬하고 있습니다. 각도 js ng-repeat를 사용하여 document.ready 페이지에 항목을 추가하는 반면 jquery masonry를 사용하고 있습니다.
$(function() {
setTimeout(function() {
var $container = $('#container');
$container.imagesLoaded(function() {
$container.masonry({
itemSelector: '.masonryImage'
});
});
}, 2000);
});
나중에 내가 버튼 클릭에 대한 항목을 추가 할 : jQuery 코드 아래에서 사용
벽돌은 NG 반복 잘했다.
$http.post('/mpb/abcd/', $scope.mpPostData)
.success(function(response) {
if (response != 0) {
angular.forEach(response.mealplans.details, function(value, key) {
$scope.mealplans.push({
'mp_name': value.mp_name,
'desc': value.desc,
'mp_by': value.mp_by,
'mp_created_at': value.mp_created_at,
'mp_image': value.mp_image,
'mp_name': value.mp_name,
'id': value.id,
'avg_rating': value.avg_rating,
'subscriber_count': value.subscriber_count,
'rating_count': value.rating_count,
'subscribed': value.subscribed
});
$scope.rating_count = value.rating_count;
});
if (response.is_more_records) {
$scope.is_more_records = true;
}
$scope.mpPostData.mp_offset = $scope.mpPostData.mp_offset + $scope.mpPostData.orig_limit;
$scope.mpPostData.mp_limit = $scope.mpPostData.mp_limit + $scope.mpPostData.orig_limit;
masonryUpdate(); //jquery function
} else {
$scope.is_more_records = false;
}
});
};
하지만 여기에 벽돌이 작동하지 않고 어느 쪽도하지 리 주선 태그 :이 다시 각도 JS를 사용하여 NG 반복 및 아약스 호출을 사용하여 수행 할 필요가있다. 버튼 클릭시 석공을 다시로드하고 싶습니다. 벽돌을 다시로드하지 않습니다
function masonryUpdate() {
alert("masonry updated");
setTimeout(function() {
$('#container').masonry();
}, 10000);
}
그러나 위의 코드 : 나는 jQuery 코드를 사용하여 코드를 다시로드 벽돌 아래했습니다. 나는 또한 CSS 아래 사용 :
/****************** MASONRY***************/ #
container {
width: 1200 px;
margin: 0 auto;
}
/*Media Queries*/
@media only screen and(max - width: 1199 px),
only screen and(max - device - width: 1199 px) {#
container {
width: 1000 px;
}
}
@media only screen and(max - width: 999 px),
only screen and(max - device - width: 999 px) {#
container {
width: 800 px;
}
}
@media only screen and(max - width: 799 px),
only screen and(max - device - width: 799 px) {#
container {
width: 600 px;
}
}
@media only screen and(max - width: 599 px),
only screen and(max - device - width: 599 px) {#
container {
width: 400 px;
}
}
@media only screen and(max - width: 399 px),
only screen and(max - device - width: 399 px) {#
container {
width: 200 px;
}
}
나는 가이드 아래에 언급 된 데이터는 버튼 클릭에 밀어되면 나는 아래와 같은 기능이라고
Three Super Easy Ways to Pull Off a Masonry Layout