我处于以下情况。
代码 (3) 与代码 (1) 一起使用,但不适用于代码 (2)。
恕我直言,原因是情况(2)中的后端控制器模块是在代码(3)之后异步加载的。
我应该如何修复代码 (3) 以使其与代码 (2) 一起使用?
PS:
使用代码(2)的原因是因为它使页面加载更快。
(1)
define([
'../../utils/backendController'
], function (backendController) {
events: {
'submit form': 'submitForm'
},
submitForm: function (event) {
event.preventDefault();
// in this way I can spy backendController object
this.doSubmitForm(backendController);
// in this way I can not spy backendController object
// require(['../../utils/backendController', this.doSubmitForm);
// see the code (2)
}
});
(2)
define([], function () {
events: {
'submit form': 'submitForm'
},
submitForm: function (event) {
event.preventDefault();
// in this way I can not spy backendController object
require(['../../utils/backendController', this.doSubmitForm);
}
});
(3)
(function () {
define([
'backendController'
], function () {
describe('when submitting a form', function () {
beforeEach(function () {
var mySpy = spyOn(backendController, 'myCall').andCallThrough();
this.view.$el.find('form').submit();
})
it('backendController.myCall should be called', function () {
expect(backendController.myCall.toHaveBeenCalled());
});
});
});
}());