admin管理员组文章数量:1345011
I would like to create a angularjs widget that can be embedded in third-party websites with minimal code such as
<script src=mywidget.js type=...></script>
<div id="mywidgetContainer"></div>
or similar.
I found some resources such as this article for developing a widget using jquery /.
How would it be done using Angularjs? In what clever ways can angular features such as directives/views etc. be harnessed to this purpose? What are the gotcha's if any? Your thoughts/suggestions/opinions/experiences, please.
I would like to create a angularjs widget that can be embedded in third-party websites with minimal code such as
<script src=mywidget.js type=...></script>
<div id="mywidgetContainer"></div>
or similar.
I found some resources such as this article for developing a widget using jquery http://alexmarandon./articles/web_widget_jquery/.
How would it be done using Angularjs? In what clever ways can angular features such as directives/views etc. be harnessed to this purpose? What are the gotcha's if any? Your thoughts/suggestions/opinions/experiences, please.
Share Improve this question asked Sep 11, 2013 at 19:42 JarnalJarnal 2,1582 gold badges26 silver badges43 bronze badges 1- I believe you can achieve this using directives in AngularJS. That's pretty much what Angular-UI (angular-ui.github.io) does. They did in a clever way with the templates bundled with directives. Take a look at their open source code. As your widgets will be based in AngularJS you will still need to include AngularJS main file (like you would need to add jQuery for a jQuery plugin). – Denison Luz Commented Sep 11, 2013 at 20:05
2 Answers
Reset to default 6You should also keep in mind the possibility that the 3rd party website also uses angular, and potentially a different version. Check Multiple versions of AngularJS in one page
This is what seems to have worked for me. In the script I set the innerHTML property of the Container div to the angular view markup code. The key point is to use angular.$bootstrap to manually bootstrap the app after the page load. I did not see any particular value in creating a directive. A directive would need to be part of the view code that would still need to be assigned to the container using innerHTML.
本文标签: javascriptHow to build a widget to embed in thirdparty websites using AngularJsStack Overflow
版权声明:本文标题:javascript - How to build a widget to embed in third-party websites using AngularJs? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743767052a2535415.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论