gpt4 book ai didi

angularjs - 在 AngularJS 指令中使用属性文本值

转载 作者:行者123 更新时间:2023-12-03 07:00:28 25 4
gpt4 key购买 nike

借助 John Lindquist 创建的 YouTube 教程,我能够使用模板创建指令。参见 fiddle :http://jsfiddle.net/37PSs/

现在,我想使用属性的值作为函数调用的变量。像这样的事情:

html:
<hello-world name="World"></hello-world>

javascript - directive:
template: '<span>myFunction({{name}})</span>'

javascript - myFunction(theirName):
return ("Hello, " + String(theirName) + "!");

我能得到的最接近的是将[对象窗口]传递给我的函数。

最佳答案

您需要将函数调用包装在 {{}} 中,如下所示:

var myApp = angular.module('myApp',[]);

myApp.directive('helloWorld', function() {
return {
restrict: 'E',
scope: {
name: '@'
},
controller: function ($scope) {
$scope.myFunc = function (input) {
return "Hello there, " + input + "!";
}
},
template: '<span>{{myFunc(name)}}</span>',
}
});

更新的 fiddle :http://jsfiddle.net/bh2KY/

关于angularjs - 在 AngularJS 指令中使用属性文本值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19931831/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com