result.js

来自「dojo-0.4.0-ajax.zip ajax一个应用。在页面上可以直接用标签」· JavaScript 代码 · 共 82 行

JS
82
字号
/*	Copyright (c) 2004-2006, The Dojo Foundation	All Rights Reserved.	Licensed under the Academic Free License version 2.1 or above OR the	modified BSD license. For more information on Dojo licensing, see:		http://dojotoolkit.org/community/licensing.shtml*/dojo.provide("dojo.data.csv.Result");dojo.require("dojo.data.Result");dojo.require("dojo.lang.assert");dojo.declare("dojo.data.csv.Result", dojo.data.Result, {	/* summary:	 *   dojo.data.csv.Result implements the dojo.data.Result API.  This	 *   is a fairly general purpose Result object that could be used	 *   by any datastore implementation that can provide an array of items	 *   in response to a query.	 */	initializer: 		function(/* array */ arrayOfItems, /* object */ dataStore) {			dojo.lang.assertType(arrayOfItems, Array);			this._arrayOfItems = arrayOfItems;			this._dataStore = dataStore;			this._cancel = false;			this._inProgress = false;		},	forEach:		function(/* function */ callbackFunction, /* object? */ callbackObject, /* object? */ optionalKeywordArgs) {			// summary: See dojo.data.Result.forEach()			dojo.lang.assertType(callbackFunction, Function); 			dojo.lang.assertType(callbackObject, Object, {optional:true}); 			dojo.lang.assertType(optionalKeywordArgs, "pureobject", {optional:true}); 			this._inProgress = true;			for (var i in this._arrayOfItems) {				var item = this._arrayOfItems[i];				if (!this._cancel) {					callbackFunction.call(callbackObject, item, i, this);				}			}			this._inProgress = false;			this._cancel = false;						return true; // boolean		},	getLength:		function() {			// summary: See dojo.data.Result.getLength()			return this._arrayOfItems.length; // integer		},	inProgress:		function() {			// summary: See dojo.data.Result.inProgress()			return this._inProgress; // boolean		},	cancel:		function() {			// summary: See dojo.data.Result.cancel()			if (this._inProgress) {				this._cancel = true;			}		},	setOnFindCompleted:		function(/* function */ callbackFunction, /* object? */ callbackObject) {			// summary: See dojo.data.Result.setOnFindCompleted()			dojo.unimplemented('dojo.data.csv.Result.setOnFindCompleted');		},	setOnError:		function(/* function */ errorCallbackFunction, /* object? */ callbackObject) {			// summary: See dojo.data.Result.setOnError()			dojo.unimplemented('dojo.data.csv.Result.setOnError');		},	getStore:		function() {			// summary: See dojo.data.Result.getStore()			return this._dataStore; // an object that implements dojo.data.Read		}});

⌨️ 快捷键说明

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