在ng-show中使用spring控制器的模型属性

时间:2016-05-09 09:56:58

标签: html angularjs spring

使用spring boot,使用html作为视图的angualrjs 我在index.html中使用它

<a ng-show="permission=='write'">
从弹簧启动控制器

我在模型中返回权限

@RequestMapping(value = "/", method = RequestMethod.GET)
public  String getIndex(Model model)
{
   model.addAttribute("permission","write");
   return "index";

}
带有标记的

选项卡在视图中不可见。而控制台没有错误。 如何在ng-show中使用模型属性值?

1 个答案:

答案 0 :(得分:0)

在javascript中,检查等于条件时应该是===

将您的ng-show更改为<a ng-show="permission==='write'">

还有一篇类似的帖子,看看这个how to get model attribute value in angularjs from spring controller