不能在离子1中的sqlite表中插入数据

时间:2017-03-12 12:48:09

标签: angularjs sqlite ionic-framework

我是离子1的新手。我用sqlite连接了我的应用程序。我想看看插入的表数据。并在控制台中显示插入的数据。但是,我无法弄清楚为什么行长度仍为0.并且控制台上没有错误。这是我的控制器代码段:

<ion-item class="item-icon-left" id="sales-list-item4" ui-sref="menu.itemQuantity">
        <i class="icon ion-android-checkbox-blank"></i>
        <button class="button button-icon icon ion-ios-cart-outline" ng-click="insert()"> click</button>
        <span class="item-note">600  </span>
      </ion-item>

这是我的模板页面代码段,当有人点击按钮时,它会调用$all_ngo函数。

global $all_ngo;

1 个答案:

答案 0 :(得分:0)

要检查的一件事是确保在设备已经触发时或之后打开数据库。

如果您在deviceready之前执行此操作,则window.openDatabase将成功,但$ cordovaSQLite.openDB可能会失败。每次你想运行sqlite时,都准备好使用ionicPlatform。

.controller('salesCtrl', ['$scope', '$stateParams','$cordovaSQLite', '$ionicPlatform', 
    function ($scope, $stateParams,$cordovaSQLite, $ionicPlatform) {

      $ionicPlatform.ready(function () {
         var db=null;

          if (window.cordova) {
             db = $cordovaSQLite.openDB({ name: "pos.db" }); //device
             console.log("not in browser");
          } else{
             db = window.openDatabase("pos.db", '1', 'my', 1024 * 1024 * 100); // browser
             console.log("browser");
          }
           $cordovaSQLite.execute(db,"CREATE TABLE IF NOT EXISTS items(id integer primary key AUTOINCREMENT,firstname text  NOT NULL,lastname text  NOT NULL)");
       }); 

       $scope.insert=function(){
           $ionicPlatform.ready(function () {
             var query="INSERT into items(firstname,lastname) VALUES(?,?)";
             $cordovaSQLite.execute(db,query,["name1","name2"]).then(function(result){

                            console.log(result.rows);
                        },function(error){
                                console.log(error);
                        });
              }
           });
        }

    }])