Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要什么:创建一个自定义指令来显示一个表格,只是为了练习。
我所拥有的:我有带有数据编码的指令,例如在这个小提琴中,并且工作正常。
我的问题:当我在控制器上使用 $http 将数据硬编码为来自 WS 的数据时,数据不会显示在表上(我认为是同步问题)。
我相信问题是因为从 WS 获取数据时没有刷新数据。但我不知道如何使用 $watch 以及是否需要。
我意识到问题出在 WS 女巫的 JSON 数据结构形式与预期的指令结构不匹配。数据在变化时会自动刷新,我相信这是因为我在里面使用了 ng-repeat,它在代码中实现了 watch。
如果有人可以确认我将不胜感激。谢谢