解析 JSON 文件后,我遇到了一个奇怪的问题。我访问数据并且只有在正确的位置使用“跟踪”时才能使用它!当我评论跟踪行时,我得到“未定义”......这是我的代码执行顺序的问题还是传递字符串参数的问题?
提前感谢您寻找解决方案,这个问题非常令人沮丧!
这是我的代码:
//index.js
var language={};
var resourceManager = {};
$(document).ready(function(){
loading();
});
function loading() {
$.ajaxSetup({'beforeSend': function(xhr){
if (xhr.overrideMimeType)
xhr.overrideMimeType("text/plain");
}
});
$.getJSON("json/lang_french.json", function(data) {
language = data;
});
setTitle();
}
function setTitle()
{
var title = resourceManager.getString("welcome");
var query = document.getElementById('title');
query.textContent = title;
}
resourceManager.getString = function(str)
{
//alert(str);//if I uncomment this line, the whole code works...
return language[str];//when the "alert" is commented, return undefined !!!
};
这是 JSON 文件:lang_french.json
{
"welcome" : "Bienvenue",
"goodbye" : "Au revoir"
}
和 HTML 文件 index.html
<!DOCTYPE html>
<html>
<head>
<style>img{ height: 100px; float: left; }</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="index.js"></script>
</head>
<body>
<div id="title">
</div>
</body>
</html>