欢迎各位兄弟 发布技术文章
这里的技术是共享的
app.filter('reverse', function() { //可以注入依赖
return function(text) {
return text.split("").reverse().join("");
}
});