Why is angular.js not smart enough to compile DOM when adding dynamic elements?(为什么 angular.js 在添加动态元素时不够聪明,无法编译 DOM?)
问题描述
我真的很喜欢 AngularJS 如何通过允许您在应用程序中声明指令来启用自定义标签/元素,但是,当我动态附加自定义标签时,什么也没有发生:
I really like how AngularJS enables custom tags/elements by allowing you to declare directives inside your app, however, when I append a custom tag dynamically, nothing happens:
angular.module('myApp', []).directive('test', (($compile) ->
restrict: 'E'
link: (scope, element, attributes) ->
$(element).html('<h1>this is a test!</h1>')
))
$('body').append('<test></test>')
如何动态构建自定义标签的实例?
How can I build an instance of my custom tag dynamically?
推荐答案
为什么要在 Angular 之外调用 jquery?例如,通常你会从一个角度指令内部做一些事情,并且可以访问 $compile.如果您绝对需要外部访问,您可以创建一个注入器.(PLUNKER)
Why are you calling jquery outside of angular? Normally you would do something from inside an angular directive for instance and that would have access to $compile. If you absolutely need access outside you can create an injector. (PLUNKER)
angular.module('myApp', []).directive('test', function($compile) {
return {
restrict: 'E',
link: function(scope, element, attributes) {
$(element).html('<h1>this is a test!</h1>')
}
}
});
///////////////////////////////////////////////////////////////////////////////
// called outside angular, you can create an injector that knows about
// certain modules
///////////////////////////////////////////////////////////////////////////////
$(function() {
// myApp for test directive to work, ng for $compile
var $injector = angular.injector(['ng', 'myApp']);
$injector.invoke(function($rootScope, $compile) {
$('body').prepend($compile('<test>Inside injector</test>')($rootScope));
});
});
这篇关于为什么 angular.js 在添加动态元素时不够聪明,无法编译 DOM?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么 angular.js 在添加动态元素时不够聪明,无法编译 DOM?
基础教程推荐
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01