common.js这个地方怎么写,一个demo都没有,我在indexAction里面如何调用呢,另外我在模板里面如何调用呢
扫码关注w3ctech微信公众号
比如你写了一个方法:
/**
* 获取日期
* @param {[type]} date [description]
* @return {[type]} [description]
*/
global.getDate = function(date){
return Date.format(date);
}
你需要在Action直接使用就可以了:
getDate();
共收到1条回复