使用Angular 1.4:
$scope.sentence
的变量。$scope.sentence
预期:
实际值:
我在这里做了一个小样本代码:
http://plnkr.co/edit/b1wPEenHTHdWKCudVoBu?p=preview
有人可以告诉我做错了吗?
答案 0 :(得分:3)
将<div testdirective>
的内容更改为Goodbye World
后,<div testdirective>
的内容不会{{sentence}}。因此,当您点击按钮Change Back to Hello
时,它不会改变价值
您应该使用以下代码:
$timeout(function() {
scope.sentence = 'Goodbye World';
}, 1000)