photoswipe ajax 加载,解决:使用Photoswipe进行图片展示
python 2.7
Django 1.6.1
photoswipe
前言
對于前端的照片存儲,已經在前一篇博文中進行展示,使用的是dropzone.js的包,圖片存儲的作用就是為了數據的再調用,所以在此片進行上次圖片的前端展示,因為我是個前端萌新,所以方法比較稚嫩,希望觀眾老爺不要嘲笑,多多指教咯。
樣式的選擇和調試請參考這里,非常好用---photoswipe教程事例
html
//根據官方教程,這里的style不管寫在哪都可以調用,因為class名字比較獨特吧
.my-gallery {
width: 100%;
float: left;
}
.my-gallery img {
width: 100%;
height: auto;
}
.my-gallery figure {
display: block;
float: left;
margin: 0 5px 5px 0;
width: 150px;
}
.my-gallery figcaption {
display: none;
}
javascript
//官方的其中一種樣式
var initPhotoSwipeFromDOM = function(gallerySelector) {
// parse slide data (url, title, size ...) from DOM elements
// (children of gallerySelector)
var parseThumbnailElements = function(el) {
var thumbElements = el.childNodes,
numNodes = thumbElements.length,
items = [],
figureEl,
linkEl,
size,
item;
for(var i = 0; i < numNodes; i++) {
figureEl = thumbElements[i]; //
element// include only element nodes
if(figureEl.nodeType !== 1) {
continue;
}
linkEl = figureEl.children[0]; // element
size = linkEl.getAttribute('data-size').split('x');
// create slide object
item = {
src: linkEl.getAttribute('href'),
w: parseInt(size[0], 10),
h: parseInt(size[1], 10)
};
if(figureEl.children.length > 1) {
//
contentitem.title = figureEl.children[1].innerHTML;
}
if(linkEl.children.length > 0) {
// thumbnail element, retrieving thumbnail url
item.msrc = linkEl.children[0].getAttribute('src');
}
item.el = figureEl; // save link to element for getThumbBoundsFn
items.push(item);
}
return items;
};
// find nearest parent element
var closest = function closest(el, fn) {
return el && ( fn(el) ? el : closest(el.parentNode, fn) );
};
// triggers when user clicks on thumbnail
var onThumbnailsClick = function(e) {
e = e || window.event;
e.preventDefault ? e.preventDefault() : e.returnValue = false;
var eTarget = e.target || e.srcElement;
// find root element of slide
var clickedListItem = closest(eTarget, function(el) {
return (el.tagName && el.tagName.toUpperCase() === 'FIGURE');
});
if(!clickedListItem) {
return;
}
// find index of clicked item by looping through all child nodes
// alternatively, you may define index via data- attribute
var clickedGallery = clickedListItem.parentNode,
childNodes = clickedListItem.parentNode.childNodes,
numChildNodes = childNodes.length,
nodeIndex = 0,
index;
for (var i = 0; i < numChildNodes; i++) {
if(childNodes[i].nodeType !== 1) {
continue;
}
if(childNodes[i] === clickedListItem) {
index = nodeIndex;
break;
}
nodeIndex++;
}
if(index >= 0) {
// open PhotoSwipe if valid index found
openPhotoSwipe( index, clickedGallery );
}
return false;
};
// parse picture index and gallery index from URL (#&pid=1&gid=2)
var photoswipeParseHash = function() {
var hash = window.location.hash.substring(1),
params = {};
if(hash.length < 5) {
return params;
}
var vars = hash.split('&');
for (var i = 0; i < vars.length; i++) {
if(!vars[i]) {
continue;
}
var pair = vars[i].split('=');
if(pair.length < 2) {
continue;
}
params[pair[0]] = pair[1];
}
if(params.gid) {
params.gid = parseInt(params.gid, 10);
}
return params;
};
var openPhotoSwipe = function(index, galleryElement, disableAnimation, fromURL) {
var pswpElement = document.querySelectorAll('.pswp')[0],
gallery,
options,
items;
items = parseThumbnailElements(galleryElement);
// define options (if needed)
options = {
// define gallery index (for URL)
galleryUID: galleryElement.getAttribute('data-pswp-uid'),
getThumbBoundsFn: function(index) {
// See Options -> getThumbBoundsFn section of documentation for more info
var thumbnail = items[index].el.getElementsByTagName('img')[0], // find thumbnail
pageYScroll = window.pageYOffset || document.documentElement.scrollTop,
rect = thumbnail.getBoundingClientRect();
return {x:rect.left, y:rect.top + pageYScroll, w:rect.width};
}
};
// PhotoSwipe opened from URL
if(fromURL) {
if(options.galleryPIDs) {
// parse real index when custom PIDs are used
// http://photoswipe.com/documentation/faq.html#custom-pid-in-url
for(var j = 0; j < items.length; j++) {
if(items[j].pid == index) {
options.index = j;
break;
}
}
} else {
// in URL indexes start from 1
options.index = parseInt(index, 10) - 1;
}
} else {
options.index = parseInt(index, 10);
}
// exit if index not found
if( isNaN(options.index) ) {
return;
}
if(disableAnimation) {
options.showAnimationDuration = 0;
}
// Pass data to PhotoSwipe and initialize it
gallery = new PhotoSwipe( pswpElement, PhotoSwipeUI_Default, items, options);
gallery.init();
};
// loop through all gallery elements and bind events
var galleryElements = document.querySelectorAll( gallerySelector );
for(var i = 0, l = galleryElements.length; i < l; i++) {
galleryElements[i].setAttribute('data-pswp-uid', i+1);
galleryElements[i].onclick = onThumbnailsClick;
}
// Parse URL and open gallery if it contains #&pid=3&gid=1
var hashData = photoswipeParseHash();
if(hashData.pid && hashData.gid) {
openPhotoSwipe( hashData.pid , galleryElements[ hashData.gid - 1 ], true, true );
}
};
// execute above function
initPhotoSwipeFromDOM('.my-gallery');
//這里開始是自己需要寫的代碼,頁面一開始就進行加載
window.οnlοad=img_result();
function img_result(){
var loc = location.href;
var n1 = loc.length;//地址的總長度
var n2 = loc.indexOf("=");//取得=號的位置
var order_id = decodeURI(loc.substr(n2+1, n1-n2));//從=號后面的內容
console.log("執行了2");
//根據url寫的映射,進入enter這個app然后調用get_case3這個函數進行處理
$.get('/enter/get_case3/',
{
//前臺獲取order_id傳入后臺當做參數
'order_id':order_id,
},
//從view.py中的方法可知,產生的data形式是一個list,list元素是dict,里面藏著對應dui'y'n該編號下的圖片路徑
function(data){
if(data[0]==""){
console.log("為空")
}
else{
var j=0
// console.log("dropzone")
var html_string='';
var aa = data.length;
console.log(aa);
for(var i=0;i
// 獲取存在服務器本地文件夾中的圖片路徑
var newimg = '/media/'+data[i]["img"]
console.log(newimg)
html_string+='
';j=j+1;
}
//比較弱的方法,就是構造html的字符串組,然后添加到id為img_show的空間中
$("#img_show").append(html_string);
}
},
'json' );
urls.py
這里構成的是一種前端映射到view的函數比如說,網頁的后綴變成了get_case3了,映射的處理的函數指的就是后面的get_case3(完全可以寫的不一樣,只要找對映射關系就可以了)
urlpatterns = patterns('enter.views',
url(r"^get_case3/","get_case3"),
)
view.py
def get_case3(request):
order_id = request.GET.get("order_id","")
conn= MySQLdb.connect(
host=你的host主機,
port = 端口號,
user='root',
passwd=密碼,
db =數據庫名字,
)
cur = conn.cursor()
conn.set_character_set('utf8')
cur.execute('SET NAMES utf8;')
cur.execute('SET CHARACTER SET utf8;')
cur.execute('SET character_set_connection=utf8;')
# 選擇出標號對應的所需要的圖
cur.execute("select img from enter_img where order_id='"+order_id+"'")
server_info_advance=cur.fetchall()
advance_info2=[]
for data3 in server_info_advance:
dict_result={}
dict_result["img"]=data3[0]
advance_info2.append(dict_result)
advance_info3=[]
if len(advance_info2)<100: #
return advance_info2
else:
return advance_info3
model的表現形式
# 數據庫名字叫做enter_img
+-----+----------+-------------------------------------+
| id | order_id | img |
+-----+----------+-------------------------------------+
| 460 | 1234 | upload/1491036872.27WechatIMG2.png |
+-----+----------+-------------------------------------+
這里回顧下過程,整個流程在于在前端觸發一個帶返回的id號,之后將這個id號代入后臺進行數據庫的索引,之后再從后臺構造好傳遞到前端,前端在進行圖片展示,photoswipe這個js包的作用就是完成圖片比較酷炫展示的作用,其中要注意的是圖片尺寸的選擇,后續有空需要把自動獲取尺寸的代碼構造出來,目前如果不是非本分辨率的圖片,放大后將呈現出很差的體驗效果,后續可能會對圖片上傳時,對圖片尺寸的進行獲取和存值,這樣再進行調出的時候,效果就會好很多。--來自自學前端三個禮拜的小白的心聲
Pay Attention
關于id的傳入,這里用的方法非常的樸素,應該是從一個頁面點擊該id然后獲取該id下的明細,也就是涉及到頁面跳轉的概念了,然后再將id傳遞進入后臺,再操作
最后
關于為啥我把上傳圖片和展示圖片分成兩篇來寫,,,,,因為,,我懶啊,哈哈哈哈,不鬧,片段剝離,有利于重復利用,嗯,就是醬紫
后續
解決問題畢竟還是需要進行復盤和記錄,這樣對以后的發展和回顧有非常大的益處,構造方法上的選擇需要接軌目前主要的方法,對于前后臺脫離的團隊,需要進行標準的數據傳輸,前端妹子們可不管后臺怎么構造方法,她們只要進行前端頁面展示就可以了(然而ui,美工,后臺都tm是我寫0.0),后續等我有空閑下來的時間,把整個構建構建工程和app的過程都仔細寫一下,從整個項目中剝離出來讓純正小白也可以一下子學會,目前只能當為自己的學習筆記,如果思想對你有所幫助,我也很高興。共勉
總結
以上是生活随笔為你收集整理的photoswipe ajax 加载,解决:使用Photoswipe进行图片展示的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 雷蛇灯光配置文件_信仰绿轴?雷蛇RAZE
- 下一篇: unity 3D 入门--SiKi学院课