我正在尝试找出 AngularJS 指令。我有以下 JSFiddle 以及我正在尝试做的事情的示例。https://jsfiddle.net/7smor9o4/
正如您在示例中看到的,我希望vm.alsoId
变量等于vm.theId
。在模板vm.theId
中显示正确的值但vm.alsoId
不显示。
我究竟做错了什么?我怎样才能实现我的目标。
如果它有帮助,最终的想法是执行以下操作:
function directive(service) {
var vm = this;
vm.entity = null;
init();
function init() {
service.getEntity(vm.theId).then(function (entity) {
vm.entity = entity;
});
}
}