我想使用select2提供的templateSelection选项。
将其添加到select_2options列表时,会使用引号进行渲染。
invited_user=forms.ModelMultipleChoiceField(queryset=User.objects.all(),
required=True,
widget=Select2MultipleWidget(select2_options={
'templateSelection': 'testformation',
}))
返回:
jQuery(function ($) {
var hashedSelector = "#" +
"id_invited_user";$(hashedSelector).select2({
"templateSelection": "testformation"}
);
});
带引号的它没有被检测为js函数,因此它不起作用。
任何人都可以帮我解决这个问题吗?