使用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中使用模型属性值?
答案 0 :(得分:0)
在javascript中,检查等于条件时应该是===
将您的ng-show更改为<a ng-show="permission==='write'">
还有一篇类似的帖子,看看这个how to get model attribute value in angularjs from spring controller