前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >SAP Cloud for Customer里一个Promise的实际应用场合

SAP Cloud for Customer里一个Promise的实际应用场合

作者头像
Jerry Wang
发布2020-05-09 16:15:01
5730
发布2020-05-09 16:15:01
举报

There are lots of tutorials about promise in the internet.

Recently I am studying the frontend code of SAP Cloud for Customer and I come across a real example of how promise is used there. Below is the Passcode logon view.

Once Passcode is entered, suppose I have already entered the system url and frontend user name in the past, they will be directly retrieved from browser storage.

Currently I use Chrome to access C4C and Web SQL is used as browser storage, where the system url and logon user name could be found from Chrome development tool.

The corresponding database initialization and table read is done by code below in file AppStatusService.js.

The series of callback functions are chained by promise API “then()” which are expected to be executed sequentially:

(1) _createTable() could only be executed after database initialization is done. (2) _getApplicationStatus could NOT be executed unless the database table which stores Application status is available – this is ensured by _createTable. (3) After application status is read from database table, _createDefaultEntries could be called to render the default value in Passcode logon view.

All above three steps are organized by promise to achieve the asynchronous execution mode. In order for me to understand how the above code works, I write a simplified version for illustration:

代码语言:javascript
复制
<!doctype html>
<html>
<head>
<script>
var end;
function setupDB(){
	return this.createDatabase().then(createTable).then(insertEntry).then(readEntry).then(printResult);
}
function createTable(){
	return new Promise(function(resovle, reject) {
		console.log("prepare to create table..." + Date.now());
		this._db.transaction(function(query){
			query.executeSql('create table if not exists user(id unique, user, passwd)');
		});
		setTimeout( _createTableOK.bind(this, resovle), 1000);
	});
}
function _createTableOK(resovle){
	console.log("table created successfully..." + Date.now());
	resovle();
}
function createDatabase(){
	return new Promise(function(resovle, reject) {
		console.log("prepare to create database..." + Date.now());
		this._db = openDatabase('mydb','1.0', 'JerryTestdb',1024);
		setTimeout( _createDatabaseOK.bind(this, resovle), 1000);
	});
}
function _createDatabaseOK(resovle){
	console.log("database created successfully..." + Date.now());
	resovle(this._db);
}
function insertEntry(){
	return new Promise(function(resolve, reject) {
		this._db.transaction(function(query){
			query.executeSql("insert into user values (1,'Jerry','1234')");
		});
		setTimeout( _insertEntryOK.bind(this, resolve), 1000);
	});
}
function _insertEntryOK(resolve){
	console.log("entry inserted to table successfully..." + Date.now()); 
	resolve();
}
function readEntry() {
	return new Promise(function(resolve, reject) {
			this._db.transaction( function(query) {
				query.executeSql('select * from user',[],function(u,results) {
				setTimeout( _readEntryOK.bind(this, resolve, results), 1000);
			}); // end of query.executeSql
	 } // end of function(query)
	 ); // end of this._db.transaction
 });
}
function _readEntryOK(resolve, oResult){
	console.log("entry readed from DB successfully..." + Date.now());
	resolve(oResult);
}
function printResult(oResults){
	for( var i = 0; i < oResults.rows.length; i++) {
			document.writeln('id: ' + oResults.rows[i].id);
			document.writeln('user: ' + oResults.rows[i].user);
			document.writeln('passwd: ' + oResults.rows[i].passwd);
	}
	end = true;
}
function work(){
	if( end ){
		clearInterval(handle);
	}
	else{
		console.log(" working..." + Date.now());
	}
}
setupDB();
var handle = setInterval( work, 200);
</script>
</head>
</html>

Open the html page with Chrome, and you can find that a database with name mydb and a table user is created with one record inserted.

In order to achieve the simulation that each step of webSQL is a time-consuming operation, I wrap the real logic into setTimeout with a certain time delay.

I scheduled function work to simulate the main work to do and the database related job are done in an asynchronous way organized within function module setupDB() by promise API.

The console output proves that the database operations are really executed asynchronously in exactly the same order as they are scheduled via then API of promise.

Note

Not all browsers support WebSQL and the specification of WebSQL is no longer in active maintenance.

Even in C4C frontend framework code we can see more and more usage on IndexedDB instead:

See the comparison on these two techniques from this link Migrating your WebSQL DB to IndexedDB.

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2020-05-06 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Note
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档