jquery $.fn.serializeObject() を require.js で拡張する以下のスクリプトを使用するにはどうすればよいですか?
次のエラーが表示されます。
キャッチされていない TypeError: 未定義の serializeObject.js のプロパティ 'fn' を読み取れません: (匿名関数)
$.fn.serializeObject = function() {
var o = {};
var a = this.serializeArray();
$.each(a, function() {
if (o[this.name] !== undefined) {
if (!o[this.name].push) {
o[this.name] = [o[this.name]];
}
o[this.name].push(this.value || '');
} else {
o[this.name] = this.value || '';
}
});
return o;
};
これは私のビュー保存関数で、エラーが発生します:
var participantDetails = $(ev.currentTarget).serializeObject();
私が見逃した他の依存関係が必要ですか?
これは私のmain.jsです:
require.config({
shim: {
"jquery": {
exports: '$'
},
underscore: {
exports: '_'
},
backbone: {
deps: ['underscore', 'jquery'],
exports: 'Backbone',
init: function (_, $) { Backbone.$ = $; return Backbone; }
},
backbone_tastypie: {
deps: ['backbone', 'underscore', 'jquery'],
attach: "Backbone"
},
serialize: {
deps: ['jquery']
//exports: 'jQuery.fn.serializeObject'
}
},
paths: {
jquery: '//cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min',
underscore: '//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.5.2/underscore-min',
backbone: '//cdnjs.cloudflare.com/ajax/libs/backbone.js/1.1.0/backbone-min',
backbone_tastypie: '/static/js/libs/backbone-tastypie',
serialize: '/static/js/libs/serializeObject',
text: 'text',
templates: '/static/'
}
});
require([
'app'
], function(App){
App.initialize();
});