从angularjs中存储在系统中的属性文件中读取

时间:2014-06-12 10:01:02

标签: javascript angularjs angularjs-directive

有人能告诉我如何读取Angularjs中的属性文件。属性文件可以是系统中的任何位置。我想要的东西,通过指定路径读取java文件。 提前致谢

1 个答案:

答案 0 :(得分:1)

有两种方法。一个是在angularJs中读取属性文件

    var app = angular.module('app', []);

app.controller('test', function ($scope, $http) {
  $http.get('connection.properties').then(function (response) {
    console.log('a is ', response.data.a);
    console.log('b is ', response.data.b);
  });
});

另一个是在春天读取属性文件

  <bean id="messageSource"
  class="org.springframework.context.support.ReloadableResourceBundleMessageSource"    autowire="byName"> 
<property name="basename" value="classpath:messages" /> 
<property name="defaultEncoding" value="UTF-8" /> 
 <property name="cacheSeconds" value="1"/>
</bean>