如题,sea.js可以和angular.js共存吗?没试过,求指教,谢谢!
angular的代码都是压在一起的,不是按需加载的,而且angular已经把作用域分的很清楚了。总之感觉不要混用。
问题应该是模块的初始化
<div id="app" ng-view></div> <script> seajs.use('app',function(app){ app.init({ id : 'app' }) }) </script>
module.exports = { init: function(cfg){ var doc = document; var wrap = doc.getElementById(cfg.id); angular.bootstrap(wrap,['testApp']); } }
之前写过demo:https://github.com/llqfront/a...
https://github.com/seajs/exam...
这个地址下有相关的案例:angularjs backbone.js undersource.js的结合
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(3)
angular的代码都是压在一起的,不是按需加载的,而且angular已经把作用域分的很清楚了。
总之感觉不要混用。
问题应该是模块的初始化
之前写过demo:https://github.com/llqfront/a...
https://github.com/seajs/exam...
这个地址下有相关的案例:
angularjs backbone.js undersource.js的结合