sqlite ngCordova使用离子返回空白

时间:2014-12-02 11:03:46

标签: angularjs sqlite cordova-3 ionic

我使用离子和angularjs进行凭证验证,我想要的是当用户已经登录然后转到成员页面,当有请求http post / get / else我想添加http标头请求时,我成功了如果不使用sqlite但是当我使用sqlite(ngCordova插件)更改我的代码时,我收到了错误。它返回空白,我的Xcode日志中没有信息。 这里是代码

// app.js

'use strict';

var db = null;
angular.module('logiseraApp', ['ionic','ngCordova'])
 .run(function($ionicPlatform, $cordovaSQLite) {

  $ionicPlatform.ready(function() {
    //SQLite database
    db = $cordovaSQLite.openDB("my.db", 1);
    //create tables
    db.transaction(function(tx) {
      //create session table
      tx.executeSql('CREATE TABLE IF NOT EXISTS session (id integer primary key, name varchar(50), value text)');

      }, function(e) {
        console.log("ERROR: " + e.message);
    });
  });
})

//this is my focus error
//i check if session is not empty
//and fetch user data then store to config.headers
//there is no error if i"m not using sqlite
.factory('authInterceptor', function($location, $q, $cordovaSQLite) {
   return {
     request: function(config) {
      config.headers = config.headers || {};

      var query = "SELECT value from session where name = ? limit 1";
      $cordovaSQLite.execute(db, query, ["userdata"]).then(function(res) {
          if(res.rows.length > 0){
              console.log("result length", res.rows.length);
              var userdata = JSON.parse(res.rows.item(0).value);
              //apache
              //config.headers.token_user_id = userdata.user_id;
              //nginx
              config.headers['Token-User-Id'] = userdata.user_id;
          }
      }, function (err) {
          console.error(err);
      });

      return config;
     }
   };
})

.config(function($stateProvider, $urlRouterProvider, $httpProvider) {
  $httpProvider.interceptors.push('authInterceptor');
});

谢谢,

1 个答案:

答案 0 :(得分:0)

尝试使用不同的sqlite语句进行不同的尝试,例如删除整数,键,varchar(50)和文本类型:

tx.executeSql('CREATE TABLE IF NOT EXISTS session (id, name, value)');

整数和文本类型是一个问题,但在使用文本类型时不需要varchar。如果它还不存在,至少应该创建一个表。

我正在使用cordova项目,我们也使用sqlite,但在我们的sqlite语句中,只有唯一用于代理键。我们使用此plugin并根据其原始类型保存所有数据,例如浮点数或字符串。