requirejs html调用,如何在html中加载requirejs自定义模块

"在ThinkPHP项目中,通过requireJS加载自定义模块common.js,实现将常用操作如ajax封装。在index.html中,通过require(['jquery', 'common'], function($, common) {...}
摘要由CSDN通过智能技术生成

在thinkphp的index.html中,加载了requireJS,requireJS加载了自定义模块。请问如何在前台HTML页面中调用自定义模块里的属性或方法。

index.html

按钮

console.log(common);

main.js

requirejs.config({

baseUrl:'/Public/',

paths:{

'jquery':'vendor/jquery/jquery',

'common':'myjs/common'

},

shim: {

'jquery':{

'exports':"jQuery"

}

}

});

require(['jquery','common'],function($,common){

$('#a').click(function() {

console.log(common.username);

});

});

common.js

define(['jquery'],function($){

return ({

username:'AAA'

});

});

——————————————————————————————————————————

请问如何在index.html中调用自定义模块common.js里的属性或者方法?

我是想把一些类似ajax的基本操作,封装到common.js中,在不同的前台页面里,调用common.js中的各种方法使用。

现在好像只能在main.js中加载common模块,然后在整个require方法中去实现业务逻辑,这样感觉main.js会越来越臃肿。

请问实现这样的效果,还有什么更好的办法吗?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值