這段時間再用apicloud的混合開發,其中在運用swiper插件這一塊遇到了一些問題,多虧了咱們老大經驗豐富,讓咱們這些後輩少採一些坑,,在這裏作一下總結,主要是Vue.nextTick()函數的用法html
坑:當時在運用swiper插件的時候,沒用用vue進行渲染是正常的,可是渲染以後數據是獲得了,可是數據不顯示,我就是一個前端的渣渣,vue+apicloud也是剛接觸,因此遇到這個問題非常着急,而後老大告訴我這裏能夠用到Vue.nextTick()函數,由於ajax獲取到的數據再對vue渲染是須要時間的,因此在不使用Vue.nextTick()的時候swiper這個插件的運行會同時和vue的變量賦值以及模板的渲染一塊兒運行,這樣就會出現數據加載不完的情況。因此,咱們運用Vue.nextTick()這個函數,也能夠理解爲將異步的代碼轉換爲同步執行
,更簡單的說就是,上面的代碼執行完以後,Vue.nextTick()裏面的代碼才能運行,如下是代碼前端
apiready = function(){ app=new Vue({ el:'#app', data:{ newslist:[] }, methods:{ showNews: function (key) { api.openWin({ name: 'new', url: './new.html', pageParam: { key:key } }); }, fetch:function(){ var that=this; $.get('url', { token : localStorage.getItem('token') },function(data){ that.newslist=data.data; Vue.nextTick(function(){ var swiper = new Swiper('.swiper-container', { pagination: '.swiper-pagination', paginationClickable: true, autoplay:2000 }); }); api.refreshHeaderLoadDone(); },'json') } }, created:function(){ this.fetch(); } }); };