最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

laravel-admin 與 vue 結(jié)合使用實(shí)例代碼詳解

 更新時(shí)間:2019年06月04日 15:14:27   作者:panyanyany  
由于 Laravel-admin 采用的是 pjax 的方式刷新頁(yè)面,意味著很多頁(yè)面刷新的操作,這篇文章主要介紹了laravel-admin 與 vue 結(jié)合使用,需要的朋友可以參考下

由于 Laravel-admin 采用的是 pjax 的方式刷新頁(yè)面,意味著很多頁(yè)面刷新的操作,并不是刷新整個(gè) document,而是從服務(wù)器拿到部分 document,再通過類似 $(“#pjax-container”).html(newPart) 的方式更新的。

這就造成一個(gè)問題,每次 pjax 刷新,都會(huì)破壞 vue 的 dom 映射。

所以理論上有2種方法解決:

重新綁定一下 vue 的映射關(guān)系

在某些頁(yè)面禁止 pjax

1 太難搞,而且沒啥資料,放棄。2 的話比較可行。

部分禁止 pjax

打開 public/vendor/laravel-admin/laravel-admin/laravel-admin.js

添加代碼:

// 不使用 pjax 刷新的頁(yè)面
$(document).on('pjax:beforeReplace', function (e, options) {
 // console.log(arguments)
 var freshPaths = [
  /\/admin.*\/products/,
 ]
 for (let path of freshPaths) {
  if (path.test) {
   if (path.test(e.state.url)) {
    location.reload()
    return false
   }
  }
  else if (options.url.search(path) !== -1) {
   location.reload()
   return false
  }
 }
})

使用自定義 view

很多時(shí)候我們并不需要大動(dòng)干戈地建立一個(gè)全部的 view,只需要在內(nèi)置 view 中稍作修改。

這時(shí)候,我們需要先自定義一個(gè) Content 類:

use Encore\Admin\Layout\Content;
class MyContent extends Content {
  public function render() {
    $items = [
      'header'   => $this->header,
      'description' => $this->description,
      'breadcrumb' => $this->breadcrumb,
      'content'   => $this->build(),
    ];
    return view('admin.content', $items)->render();
  }
}

然后引用它:

public function index(MyContent $content) {
    return $content
      ->header('product')
      ->description($this->brand)
      ->body($this->grid());
  } 

    這樣一來,每次進(jìn)入到 index 頁(yè)面,都會(huì)渲染 admin.content 這個(gè) view 。

view 的內(nèi)容直接 copy 自 vendor/encore/laravel-admin/resources/views/content.blade.php

在 view 里插入 vue 組件

添加2部分代碼即可。

第一部分是初始化 vue app:

<script data-exec-on-popstate>
  // boot up the demo
  $(function () {

   // vapp
   window.vapp = new Vue({
    el: '#app',
    data () {
     return {
      status: {
       showGalleryEditor: false,
      },
      store: {
       images: [],
       el: '',
      },
     }
    },
    components: {},
    methods: {
     startGalleryEditing (event) {
      this.status.showGalleryEditor = true
      this.store.pk = $(event.target).parent().find('ul').data('pk')
      this.store.images = $(event.target).parent().find('img').toArray().map((e) => e.getAttribute('src'))
      window.p = $(event.target).parent().find('ul')
     },
    },
   })
  })
  </script>

 第2部分是插入組件:

<gallery-editor :status="status" :images="store.images" :pk="store.pk">
</gallery-editor>

vue 組件單獨(dú)一個(gè) js 文件

位置如下:

public/vendor/components/gallery-editor.js

定義如下:

Vue.component('gallery-editor', {
 props: {
  status: {
   showGalleryEditor: false,
  },
  images: [],
  pk: 0,
  moveTo: [],
 },
 data () {
  return {}
 },
 watch: {
  images (newVal, oldVal) {
   this.moveTo = []
   for (let src of newVal) {
    this.moveTo.push({
     src: src,
     productId: this.pk,
     deleted: 0,
    })
   }
  },
 },
 methods: {
  close () {
   this.status.showGalleryEditor = false
  },
  save () {
   let args = {_token: LA.token}
   args.id = this.pk
   args.images = []
   args.move_to = []

   // console.log(JSON.stringify(this.moveTo))
   for (let imgObj of this.moveTo) {
    if (imgObj.deleted) {
     continue
    }
    if (imgObj.productId === this.pk) {
     args.images.push(imgObj.src)
    } else {
     args.move_to.push({src: imgObj.src, product_id: imgObj.productId})
    }
   }
   // console.log(JSON.stringify(args))
   $.post('/admin/products/move-images', args).done(() => {
    toastr.success('success')
    this.status.showGalleryEditor = false
   }).fail((response) => {
    toastr.error(response.responseText)
   })
  },
 },
 template: `
      <div class="modal" tabindex="-1" role="dialog" :class="{show: status.showGalleryEditor, fade: !status.showGalleryEditor}">
       <div class="modal-dialog" role="document">
        <div class="modal-content">
         <div class="modal-header">
          <button type="button" class="close" data-dismiss="modal" aria-label="Close" @click="close"><span aria-hidden="true">×</span></button>
          <h4 class="modal-title">Editing images</h4>
         </div>
         <div class="modal-body">
         <ul style="list-style-type: none;">
           <li v-for="(imageObj, key) in moveTo" :key="key" style="margin-bottom: 8px">
             <img :src="imageObj.src" alt="" style="width:40px;height:40px">
             <label>Move to product: <input type="text" v-model="imageObj.productId"></label>
             <label>Delete:<input type="checkbox" v-model="imageObj.deleted"></label>
          </li>
          </ul>
         </div>
         <div class="modal-footer">
          <button type="button" class="btn btn-default" data-dismiss="modal" @click="close">Close</button>
          <button type="button" class="btn btn-primary" @click="save">Save changes</button>
         </div>
        </div>
       </div>
      </div>`,
})

這是一個(gè)彈出式編輯框,具體作用就不解釋了,只是個(gè)示例。

然后還需要在 Admin/bootstrap.php 中引用這個(gè) js 文件:

Admin::js('/vendor/components/gallery-editor.js');為什么不把組件代碼直接寫進(jìn) view 中呢?

因?yàn)?pjax 的后端邏輯似乎有 bug,template 的內(nèi)容無法全部渲染到前端,導(dǎo)致頁(yè)面出錯(cuò)。

總結(jié)

以上所述是小編給大家介紹的laravel-admin 與 vue 結(jié)合使用實(shí)例代碼詳解,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!

相關(guān)文章

最新評(píng)論

香河县| 盐源县| 鄂温| 灵川县| 民勤县| 绥芬河市| 称多县| 繁峙县| 宣化县| 科技| 托里县| 西贡区| 吐鲁番市| 辽阳市| 师宗县| 涪陵区| 南华县| 连江县| 察隅县| 嘉善县| 塘沽区| 黄梅县| 寿阳县| 铜梁县| 土默特左旗| 麻栗坡县| 武宣县| 中阳县| 嘉义市| 介休市| 莆田市| 衡阳县| 庆云县| 益阳市| 临夏市| 大名县| 花垣县| 梅河口市| 宣化县| 杭锦旗| 临沭县|