一、layui.config
全局配置
base: 定义模块所在目录
layui.config({
base: "/aaa/bbb/modules/"
}).extend({
common:"common"
})
上述页面访问资源路径为:http://host:port/aaa/bbb/modules/common.js
说明:在django中,由于设置了STATIC_URL=/static/
(此配置设置服务通过httpL//host:port/static/xxxxxxxx
来访问静态资源),因此上述资源访问路径可以正常被访问到。