⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 harvester.js

📁 联合国农粮署牵头开发的geonetwork源代码最新版
💻 JS
字号:
//=====================================================================================//===//=== Harvester//===//=====================================================================================function Harvester(){	var currId = null;	//=====================================================================================//===//=== API methods//===//=====================================================================================//--- abstract methodsthis.getType      = function() {}this.getLabel     = function() {}this.getEditPanel = function() {}this.getResultTip = function() {}//=====================================================================================this.init = function()     { 	this.view.init();        }//=====================================================================================this.setData = function(node) { 	currId = node.getAttribute('id');	this.view.setData(node); }//=====================================================================================this.setEmpty = function(){ 	currId = "";	this.view.setEmpty();    }//=====================================================================================this.getUpdateRequest = function(){	if (!this.view.isDataValid())		return null;				var data = this.view.getData();		data.ID   = currId;	data.TYPE = this.getType();		return this.model.getUpdateRequest(data);}//=====================================================================================}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -