变量定义
1 | //String正则 |
REGEX_STRING_REGEXP用法
REGEX_STRING_REGEXP 在源码22232行使用:
里面涉及到了forEach函数还有ngAttributeAliasDirectives
1 | //别名属性对象 |
foreach函数
foreach第一个参数为值,第二个参数为键,源码分析可以看我的另一篇博客
angular1.5.8 foreach 源码分析1
2
3
4
5for (key in obj) {
if (hasOwnProperty.call(obj, key)) {
iterator.call(context, obj[key], key, obj);
}
}
ngAttributeAliasDirectives
ngAttributeAliasDirectives
在publishExternalAPI
函数中使用到了
1 | $provide.provider('$compile', $CompileProvider). |