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

问题描述 投票:0回答:1

谁能告诉我如何读取 Angularjs 中的属性文件。属性文件可以位于系统中的任何位置。我想要类似的东西,通过指定路径读取java文件。 预先感谢

javascript angularjs angularjs-directive
1个回答
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);
  });
});

另一个是在 spring 中读取属性文件

  <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>
© www.soinside.com 2019 - 2024. All rights reserved.