用户可以在站点中设计内容,并根据需要将项目导出为HTML。如何让用户以html格式下载设计?
答案 0 :(得分:0)
不确定您的意思,但是如果将设计内容放入div中。您可以以html格式下载该div。
module.exports = function(sequelize, DataTypes) {
return sequelize.define('customer', {
idcustomer: {
type: DataTypes.INTEGER(11),
allowNull: false,
primaryKey: true,
autoIncrement: true
},
customername: {
type: aDataTypes.STRING(45),
allowNull: true
},
}, {
tableName: 'customer',
underscored: true
});
};
function download(){
var a = document.body.appendChild(
document.createElement("a")
);
a.download = "export.html";
a.href = "data:text/html," + document.getElementById("content").innerHTML;
a.click();
}
像这样的小提琴
因此