标签: angularjs
如何将/ /g和/<[^>]+>/gm与angularJs结合使用? 这是我的代码:
/ /g
/<[^>]+>/gm
.filter('htmlToPlaintext',function(){ return function(text) { return text ? String(text).replace(/<[^>]+>/gm, '') : ''; } })