问题描述
我对将绘图表另存为图像有疑问。我编写了以下代码:
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);
});
我可以从图像上剪切吗?高度设置不合适,因为表格的行数可能不同。
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)