- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在简单的应用程序上遇到了麻烦,就像这个例子:
编译后ng-click不起作用。
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example - example-compile-production</title>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
</head>
<body ng-app="compileExample">
<script>
angular.module('compileExample', [], function($compileProvider) {
// configure new 'compile' directive by passing a directive
// factory function. The factory function injects the '$compile'
$compileProvider.directive('compile', function($compile) {
// directive factory creates a link function
return function(scope, element, attrs) {
scope.$watch(
function(scope) {
// watch the 'compile' expression for changes
return scope.$eval(attrs.compile);
},
function(value) {
// when the 'compile' expression changes
// assign it into the current DOM
element.html(value);
// compile the new DOM and link it to the current
// scope.
// NOTE: we only compile .childNodes so that
// we don't get into infinite loop compiling ourselves
$compile(element.contents())(scope);
}
);
};
});
})
.controller('GreeterController', ['$scope', function($scope) {
$scope.name = 'Visitor';
$scope.html = 'Hello {{name}} have a look at <form><button ng-click="popFailed()">ng click which Failed</button></form> After successful request';
$scope.popSuccess = function() {
alert('pop success');
};
$scope.popFailed = function() {
alert('test success');
};
}]);
</script>
<div ng-controller="GreeterController">
<form>
<button ng-click="popSuccess()">ng click which succed</button>
</form>
<br/>
<input ng-model="name"> <br/>
<textarea ng-model="html"></textarea> <br/><br/><br/><br>
<div compile="html"></div>
</div>
<!-- Exemple of angularJs bootstrapping
<script>
// bootstrap the app to angular
angular.bootstrap(document.getElementById('compile_example'), ['compile_example']);
</script>
-->
</body>
</html>
但是当我使用 symfony 时,它提供生成模板的rest-api(如 $scope.html),返回 html 字符串,如示例中所述。但我的 ng-click 不起作用。事件监听器例如(ev) 我的浏览器检查器上没有出现指示
我使用带有 id 的 angular.bootstrap 而不是 ng-app 作为我的应用程序声明
我需要帮助
最佳答案
关于javascript - 尝试使用 $compileProvider、CRUD 和引导指令 ng-clink 失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45214521/
我使用框架 YII。我将从 GRID 为我的列表中的电子邮件链接。我添加了这个: array( 'class'=>'CLinkColumn', 'header'=>'e-mail',
据我所知,Clink ( http://mridgers.github.io/clink/ ) 没有提供任何关于如何使用它提到的 lua API 的文档。 我查看了安装目录中的 clink.lua 文
有没有可能运行Clink在 Windows Terminal Preview 内? 我尝试在设置中添加此条目: { "hidden": false,
我在简单的应用程序上遇到了麻烦,就像这个例子: 编译后ng-click不起作用。 Example - example-compile-production an
如果你在 Windows 上运行 Anaconda,你有一个 activate.bat 以这一行结尾的文件将您当前的 conda env 放在提示中: set PROMPT=[%CONDA_DEFAU
我正在使用 clink与 ConEmu对于 Windows 上的各种节点相关任务,但现在我正在尝试 Visual Studio 代码。 如何将 clink 注入(inject)到 Visual Stu
我是一名优秀的程序员,十分优秀!