js 异步请求
//标签
$.ajax({
url: '/TagManager/MatchList',
dataType: 'json',
data: { functionId: $('#FunctionId').val() },
async: true,
success: function (data) {
tag = $("#Tag").select2({
dropdownParent: $("#selectTag"),
allowClear: true,
tags: true,
multiple: true,
placeholder: { id: "00000000-0000-0000-0000-000000000000", text: "" },
data: data
});
}
});
浙公网安备 33010602011771号