我有一段js代码,我真的想改进但不确定如何。 下面的工作版本有一个全局变量和一个单独的函数声明,我认为它可以合并到一个匿名函数中(代码剪断如下:不工作)
任何帮助或指示都将不胜感激。
工作版:
var Data = {}; // would like to remove the global variable
function callBack() {
$.ajax({
url: "http://host/callBacks/script.js",
//get and execute Script to process json data below
dataType: "script"
});
}
$(document).ready(function() {
$.ajax({
type: "Get",
url: "http://host/data/json/",
success: function(json) {
Data = json; // Would like to just call the callback here
callBack(Data);
},
error: function() {
alert("error");
}
});
});
// Script which gets loaded from callBack
(function(Data) {
var json = $.parseJSON(Data);
$.each(json, function(i, v) {
alert(v);
});
})(Data);
所需代码:无效
// Error: Length is null or not an object. In jQuery script
var Data = {}; // Ideally would like to remove this from global scope if possible
$(document).ready(function() {
$.ajax({
type: "Get",
url: "http://host//data/json/",
success: function(Data) {
$.ajax({
url: "http://host/callBacks/script.js",
dataType: "script"
});
},
error: function() {
alert("error");
}
});
// Error: Length is null or not an object. In jQuery script
更新:根据adeneo回答: 还需要全局Data = {};因为返回的立即执行的脚本作为参数我想是
var Data = {};
$(document).ready(function() {
function doAjax() {
return $.ajax({
type: "GET",
url: "http://host/data/json/"
});
}
var XHR = doAjax();
XHR.done(function(data) {
Data = data; // <--- If I remove this I get Error:'length' is not or not an object
$.ajax({
url: "http://host/callBacks/script.js",
dataType: "script"
});
}).fail(function() {
alert("error");
});
});
虽然看起来不错。应该提一下,我在IE 8中测试这个。约束。更新的标签
答案 0 :(得分:3)
$(function() {
function doAjax() { //put inside function
return $.ajax({ //return deffered object
type: "GET",
url: "/data/json/" //X domain not supported
});
}
var XHR = doAjax(); //do ajax call
XHR.done(function(data) { // use deffered object
var json = $.parseJSON(data); //why would you need to get an external script just to parse some JSON?
$.each(json, function(i, v) {
alert(v);
});
}).fail(function() {
alert("error");
});
});
答案 1 :(得分:0)
您可以将全局变量和相关函数管理到一个类中,并在
中从中创建一个对象$(document).ready(function(){
// Your code here !
});
答案 2 :(得分:0)
如下:
(function () {
var myData_andMethod = {
data : {},
method : function (data) { this.data = JSON.parse(data); }
};
$.ajax({success : (function (obj) {
var callback = obj.method.bind(obj);
return function (data) {
callback(data);
};
}(myData_andMethod)) //, error : function... url:"".....
});
//attach events here.
}());
你现在已经有0个全球任何人 除了现在你必须确保你对数据做了一些事情,一旦你的回叫开始(或者它将永远消失,你再也无法访问它),或者你需要将它发送到一些已知范围内的函数(全局或部分应用程序或其他...),或者将其粘贴到 IS 可公开访问的var中,以便 可以 在关闭密封后访问数据,并且所有回调都会回来。
甚至像将myData_andMethod
对象发送到将对象存储在其他位置的其他函数一样简单......