layuiadmin 模版渲染完成执行 lay-done 写到 controller(js业务模块文件) 首次无法执行的解决方法
生活随笔
收集整理的這篇文章主要介紹了
layuiadmin 模版渲染完成执行 lay-done 写到 controller(js业务模块文件) 首次无法执行的解决方法
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
因為將?lay-done?寫到?controller?中,需要等?controller?加載完才能訪問到定定義的 done?方法
有時候模版渲染完了,controller?還未加載完,導致執行不了?lay-done
解決方法如下:
1、在?\src\controller\common.js?新增全局函數waitDone,如下:
//回調的等待方法(回調放到 controller 中,方法還沒加載到) var waitDone = function(callback,data){try{if(typeof(eval(callback))=="function"){window[callback](data);}}catch(e){setTimeout(function(){waitDone(callback,data)},100);} }2、模版塊代碼中的 lay-done?改成如下寫法:
<script type="text/template" template lay-done="waitDone('user_add_template_done',d.params)"> ... </script>?
總結
以上是生活随笔為你收集整理的layuiadmin 模版渲染完成执行 lay-done 写到 controller(js业务模块文件) 首次无法执行的解决方法的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 嵌入式Linux设备驱动面试题汇总
- 下一篇: DSSM学习——入门及实验篇