2016年5月26日 | Leave a comment 问题: Angular2 做的网页在微信中用不了 解决: 可以使用“ 微信web开发者工具” 看看console报什么错误 一般是用了不支持的 method 如: window.requestAnimateFrame 之类的 需要调整下再调用前先检查一下if( typeof(window.requestAnimateFrame)!=’undefined’ ){ window.requestAnimateFrame(…);}