//标签
$.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
});
}
});
标签:异步,0000,请求,data,js,true From: https://www.cnblogs.com/wjeremy/p/17351859.html