当前位置:网站首页>Applet cloud data, data request a method to collect data

Applet cloud data, data request a method to collect data

2022-06-24 09:07:00 Secret Shura

Here are two different ways for code to request data
Contains ES5 ES6 Two different methods , So you experience the difference between the two methods
Here are some Inline code slice .

// An highlighted block
	 One 、 This is a ES5 Method :	personcritics It's the set name 
	onShow(){
    
			db.collection('personcritics').get(
				{
    
					success:function(res){
    
						console.log(res)
					}
				}
			)
		}
			
	 Two 、 One 、 This is a ES6 Method :  personcritics It's the set name 
	onShow(){
    
		 db.collection('personcritics').get().then(res=>{
    
			 		console.log(res)
			 })
		}

var foo = 'bar';
原网站

版权声明
本文为[Secret Shura]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/175/202206240625105509.html