어떻게 layui에서.use () 외부 호출 layui에서 정의한 방법

layui

  • 첫걸음
  • 두 번째
  • 제3부
  • layui.use () 에서 호출됩니다
  • 외부 호출

  • 첫걸음


    페이지에 layui를 도입합니다.all.js
    	<script src="/static/layui/layui.all.js" charset="utf-8"></script>
    

    두 번째 단계

    //  
    layui.define(['layer', 'table'], function (exports) {
            var table = layui.table;
            exports('setInvoiceInfo', function (temp1,temp2) {// 
                //do something
                alert(temp1 + "---" + temp2)
            });
    
    
            exports('setGoodsInfo', function (temp1,temp2) {
                //do something
                alert(temp1 + "---" + temp2)
            });
        });
    

    제3부


    호출

    layui.use () 에서 호출

    	layui.setInvoiceInfo(temp1,temp2);
        layui.setGoodsInfo(temp1,temp2);
    

    외부 호출

    	layui.setInvoiceInfo(temp1,temp2);
        layui.setGoodsInfo(temp1,temp2);
    

    참조:https://www.layui.com/doc/base/infrastructure.html

    좋은 웹페이지 즐겨찾기