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