无法将值绑定到角度为Jsp页面的输入框

时间:2017-05-25 09:29:19

标签: java angularjs spring jsp

我在jsp页面中使用了angular,但我很困惑如何将值绑定到inputbox

这里我是我的控制器

@RequestMapping(value="/customer" , method = RequestMethod.GET)
    public String getCustomerPage(Model model,HttpSession session){

CustomerBean customerBean = getCustomerById(id);     model.addAttribute(“customer”,customerBean);     返回“addCustomer”     }

我的jsp代码

<input type="text" name="customerName" value="${customer.name}" ng-model="cust.name" required/>

无法绑定值

但如果我删除了ng-model,则将值绑定到控件 即

<input type="text"  name="customerName" value="${customer.name}" required/>  

这是有效的

帮助!

0 个答案:

没有答案