|
|
|
ช่วยด้วยครับ!! ผมจะเอาตัวแปรจากการ query ไปใช้ต้องทำยังไงครับ งมมาหลายชั่วโมงแล้วว T____T (JS) |
|
|
|
|
|
|
|
ช่วยด้วยครับ!!! ผมพัฒนาแอพด้วย ionic และใช้ ng-Cordova , SQLite ในการพัฒนา
ผมจะเอาตัวแปรจากการ query ไปใช้ต้องทำยังไงครับ งมมาหลายชั่วโมงแล้วว T____T
จุดที่ผมติดดูในโค้ดครับ ผม*** ไว้
Code (JavaScript)
$scope.MenuList = [];
var query = "SELECT * FROM menu WHERE menu_name=(?) ";
$cordovaSQLite.execute(db,query,[$stateParams.menu_name]).then(function(result){
console.log('Select DB Pass.');
if(result.rows.length > 0){
console.log('Show DB.');
console.log('End Select DB.');
for(var i = 0; i < result.rows.length; i++){
$scope.MenuList.push({
menu_name: result.rows.item(i).menu_name,
menu_type: result.rows.item(i).menu_type,
menu_id: result.rows.item(i).menu_id
});
}
}
else{
console.log('DB Null.');
console.log('End Select DB.');
$scope.resultAction = "ไม่พบเมนู";
$scope.MenuList = [];
}
},function(error){
console.log('Select DB Error.');
}
);
//*****************************************
console.log('Start Select DB.');
$scope.RmList = [];
var query = "SELECT * FROM rm WHERE menu_id=(?) ";
$cordovaSQLite.execute(db,query,[***ตรงนี้ผมจะเอา menu_id ของการ SELECT TEBLE menu แต่ไม่รู้จะทำยังไง***]).then(function(result){
console.log('Select DB Pass.');
if(result.rows.length > 0){
console.log('Show DB.');
console.log('End Select DB.');
for(var i = 0; i < result.rows.length; i++){
$scope.RmList.push({
rm_name: result.rows.item(i).rm_name,
rm_unit: result.rows.item(i).rm_unit,
rm_nameunit: result.rows.item(i).rm_nameunit,
rm_price: result.rows.item(i).rm_price,
rm_id: result.rows.item(i).rm_id,
menu_id: result.rows.item(i).menu_id
});
}
$scope.resultAction = "";
}
else{
console.log('DB Null.');
console.log('End Select DB.');
$scope.resultAction = "ไม่พบวัตถุดิบ";
$scope.RmList = [];
}
},function(error){
console.log('Select DB Error.');
}
);
Tag : MySQL, JavaScript, Mobile
|
ประวัติการแก้ไข 2016-08-02 21:04:21 2016-08-02 21:06:22 2016-08-02 21:07:10 2016-08-02 21:22:52 2016-08-02 21:23:32 2016-08-02 21:25:06
|
|
|
|
|
Date :
2016-08-02 21:01:04 |
By :
samart_info |
View :
1262 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (JavaScript)
$cordovaSQLite.execute(db, query, [MenuList.menu_id]).then...
|
|
|
|
|
Date :
2020-05-18 13:35:35 |
By :
PhrayaDev |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|