我对将绘图表另存为图像有疑问。我编写了以下代码:
fetch('../svc/RegistrationForm.asmx/GetRegistrationType', {
method: 'GET',
credentials: 'same-origin',
headers: {
'Content-Type': 'application/json'
}
}).then((response) => {
types = response.json();
for (const [ID, Name] of Object.entries(types)) {
console.log(ID, Name);
options += '<option value="' + ID + '" text="' + Name + '" />';
}
$('#registrationTypeDropDown').append(options);
});
但是不幸的是,桌子底部有一个很大的空白。
我可以从图像上剪切吗?高度设置不合适,因为表格的行数可能不同。