在wxml中使用WXS,报错但能运行?
在WXML中嵌入以下代码:
<wxs module=“m1”>
var dateString = function(e){
return e.slice(5,7)
};
module.exports.dateString = dateString;
</wxs>
<text>{{m1.dateString(item.createDate)}}</text>
报错提示:TypeError: e.slice is not a function
虽然报错但也能运行,不知为何?