ng-model controller中取不到值(input)

一.对于input绑定ng-model默认情况下载控制器中获取不到改变的值

1.在自定义控制器中获取不到改变的值

原因:

1.ng-model取不到值是因为$scope作用域的问题

解决方案:

对于input的ng-model绑定使用对象object方式绑定,可以跨作用于访问。

controller中定义一个集合:

$scope.data ={
  text1 : "",
  text2: "",
}

页面中分别定义 ng-model="data.text1",ng-model="data.text2"。

在controller中直接取$scope.data.text1就能得到<input>或者<textarea>中的值了

原文地址:https://www.cnblogs.com/whblogs/p/9952125.html

时间: 2024-11-08 08:50:07

ng-model controller中取不到值(input)的相关文章

action中list传到JSP中取不到值的问题

今天遇到了这个问题 action中list传到JSP中取不到值 搞了半天是因为我在JSP中取值的的时候 <s:iterator  value="shlist" var="t"> 写成了下面这样 <s:property value="#t.SHAdd"/> 因为我数据库里的字段这样写的 其实应该是 <s:property value="#t.shadd"/> 万万没想到,我的hibernate

@Value在Controller中取值

一.使用 @Value("${name}")注解可以获取自定义的properties文件中的name值 二.配置 如果只是在applicationcontext.xml中配置,那么在service中获取,没有任何问题,但是在controller中是获取取到值的,如果想获取到值,需要在spring-servlet.xml中再配置一遍 !-- 定义环境变量文件 --> <bean id="propertyHolder" class="org.spr

js中取session的值

在js中貌似不能取session的值,我在后台设置的session一直拿不到,于是用间接的方式拿到session的值. 首先在jsp中嵌入java代码,用java设置一个变量来取session值,再在页面设置标签取这个变量的值,最后通过js取标签的值(即是session的值) 具体代码如下: (1)后台设置session: request.getSession().setAttribute("msg",strAlertMsg); return get(request, response

freemaker中取map的值

freemaker取map数据时,先判断map是否为null值   用assign标签获取${}取值即可 <#if map??&&(map?size gt 0)> <#assign value = (map['key'])> 或 ${examInfoMap['key']} </#if> 原文地址:https://www.cnblogs.com/xiaotong1223/p/9197605.html

python 将数组中取某一值的元素全部替换为其他元素的方法

这里的问题是在做House Price Prediction的时候遇到的,尝试对GarageArea做log转化,但是由于有些房子没有车库,所以GarageArea = 0,再通过log转化变成-inf了,所以我想把所有-inf的数据全部再转化为0,如题目所示. 除了循环还可以怎么做呢?看下面的代码 train_test['GarageArea'] = np.log(train_test['GarageArea']) train_test['GarageArea'] = train_test['

@Value取不到值引出的spring的2种配置文件applicationContext.xml和xxx-servlet.xml

项目中经常会用到配置文件,定义成properties的形式比较常见,为了方便使用一般在spring配置文件中做如下配置: <context:property-placeholder ignore-unresolvable="true" location="classpath*:/application.properties" /> 这样在程序代码中直接用@Value("${name}")就能直接取到properties文件中定义的变量

spring mvc Controller中使用@Value无法获取属性值

在使用spring mvc时,实际上是两个spring容器: 1,dispatcher-servlet.xml 是一个,我们的controller就在这里,所以这个里面也需要注入属性文件 org.springframework.web.servlet.DispatcherServlet 这里最终是使用WebApplicationContext parent =WebApplicationContextUtils.getWebApplicationContext(getServletContext

spring controller中@Value取不到applicationContext.xml中加载配置文件的问题

原因还未查证: http://sunjun041640.blog.163.com/blog/static/256268322014127113844746/ 在使用spring mvc时,实际上是两个spring容器: 1,dispatcher-servlet.xml 是一个,我们的controller就在这里,所以这个里面也需要注入属性文件 org.springframework.web.servlet.DispatcherServlet 这里最终是使用WebApplicationContex

Json对象中取Value值方式_jsonPath

=========方式一:关于json取key的Value值--- jsonPath 以这句代码为例: String token1= JSONPath.eval(JSON.parseObject(httpresponse), "$.access_token").toString(); 参数: JSON.parseObject(httpresponse)      转换成JSON的数据 $.access_token                                JSON