1
我試圖加載在茉莉的數據集爲我的測試,如這樣...... 但是作爲一個JSON調用我似乎無法總是得到測試通過「,它表示「在使用其數組之前等待JSON調用完成。我嘗試使用ajaxStop函數無濟於事。有任何想法嗎 ?Jquery的AJAX負載測試
describe("simple checks", function() {
var exampleArray = new Array();
beforeEach(function(){
$(document).ajaxStop(function() {
$(this).unbind("ajaxStop");
$.getJSON('/jasmine/obj.json', function(data) {
$.each(json.jsonattr, function(i, widgetElement) {
exampleArray.push(new widget(widgetElement));
});
});
});
});
it("use the exampleArray", function() {
doSomething(exampleArray[0]); // frequently this is coming up as undefined
});
jqueryrocks你當然會爲你做搖滾merci beaucoup! – wmitchell