在angularJS中,我如何從屬性文件讀取值?angularjs從屬性文件中讀取
connection.properties:
url="http://localhost:8080"
user= "me"
get= "GET"
post= "POST"
app.js:
var app = angular.module('testing',[]);
app.controller('testCtrl',function($scope,$http) {
$http({
url: connection.properties.url ,
method: connection.properties.get,
params: {user: connection.properties.user})
});
});
@patxy connection.properties是一個駐留在我的服務器上的文件。 – Woot4Moo