问候研究员堆垛机, 我有一个属性文件“ demo.properties ”,其中包含键值对: 构建= 47
我还有一个HTML(静态)页面' demo.html '
<html>
<body>
The current build is: <!--here I want the value of build from the demo.properties -->
</body>
</html>
有没有办法在这里访问“构建”值的值?任何建议都将非常感谢。谢谢!
答案 0 :(得分:0)
您可以使用javascript来读取您的文件,然后将“=”上的demo.properties文件中的文本拆分,以获得构建版本。
var readFile = function(event) {
var input = event.target;
var reader = new FileReader();
reader.onload = function() {
var result = reader.result;
var outputDiv = document.getElementById('output');
outputDiv.innerText = "The current build is: " + result.split("=")[1];
};
reader.readAsText(input.files[0]);
};
工作plnkr是:Plnkr