溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

ASP.net與SQLite數(shù)據(jù)庫如何通過js和ashx交互

發(fā)布時間:2021-07-23 10:03:59 來源:億速云 閱讀:137 作者:小新 欄目:開發(fā)技術(shù)

這篇文章將為大家詳細講解有關(guān)ASP.net與SQLite數(shù)據(jù)庫如何通過js和ashx交互,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

ASP.net與SQLite數(shù)據(jù)庫通過js和ashx交互(連接和操作):

廢話(也是思路):用的是VS2010,打算做網(wǎng)站前后臺。由于不喜歡前臺語言里加些與html和css和js的其他內(nèi)容,想實現(xiàn)前后臺語言的分離,與前后臺通過js的ajax實現(xiàn)交互,故很多百度出來的方法不成立,雖聽說ashx過時,但是他實現(xiàn)了我要的效果:即前后臺語言不是相互嵌入實現(xiàn)交互,而是通過js實現(xiàn)(有接口就可以)。

由于領(lǐng)導指定用SQLite,故這兩天還折騰了SQLite,不過對于這種小型的網(wǎng)站,它是個很好的選擇(不需要部署,只需在官網(wǎng)下載.net的,然后在項目中引用,在Web.config里進行設(shè)置,即可操作——當然還有一些錯誤和注意事項要注意),總的說來,我用ashx和js的ajax實現(xiàn)前后臺的交互,后臺與SQLite數(shù)據(jù)庫連接——1.通過引用System.Data.SQLite.dll;2.在界面主文件夾下添加SQLite.Interop.dll為鏈接;3.Web.config文件配置;4.SQLiteHelper.cs編寫,ashx調(diào)用執(zhí)行(可劃分DAL進行分類建cs,便于管理)。

好處:實現(xiàn)前后臺語言的分離,不用部署,不用曾經(jīng)的SQLSERVER 的Model(get和set組成的東西)即可完成數(shù)據(jù)讀寫(此處不管連接SQLSERVER的ADO)——暫時想到也知道這么一點,僅供參考。

 正文:

一、ashx和js的ajax實現(xiàn)前后臺的交互:

ASP.net與SQLite數(shù)據(jù)庫如何通過js和ashx交互

文件路徑如圖一,js會在product.html里引用,故連接ashx的路徑,是相對product.html的路徑,js代碼如下:

$(document).ready(function () {
 $.ajax({
  url: '../InterSQLite/demo.ashx',
  type: 'post',
  datatype: 'json',
  cache: false,
  async: false,
  success: function (data) {
   alert(data);
  }
 })
})

ashx代碼如下:(主要起作用的是:context.Response.Write(strjson);)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace MvcAdmin.InterSQLite
{
 /// <summary>
 /// demo 的摘要說明
 /// </summary>
 public class demo : IHttpHandler
 {

  public void ProcessRequest(HttpContext context)
  {
   // string strjson = "[ {\"userName\":\"test\"}]";
   context.Response.ContentType = "text/plain";
   string str2 = "測試";
   // string strjson = "[ {\"userName\":\"test\"}]";
   string strjson = "[ {\"userName\":\"" + str2 + "\"}]";
   context.Response.Write(strjson);
  }

  public bool IsReusable
  {
   get
   {
    return false;
   }
  }
 }
}

這一部分請注意:1.發(fā)布要在本地(我測試的發(fā)布在別的服務(wù)器,前臺接收不到)

        2.IIS配置(打開本機的IIS——>配置):

可參考https://www.jb51.net/article/29787.htm

ASP.net與SQLite數(shù)據(jù)庫如何通過js和ashx交互

ASP.net與SQLite數(shù)據(jù)庫如何通過js和ashx交互

二、后臺與SQLite數(shù)據(jù)庫連接:

1.通過引用System.Data.SQLite.dll;

在官網(wǎng)選擇適應(yīng)電腦系統(tǒng)的.net的System.Data.SQLite.dll的下載:http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki

ASP.net與SQLite數(shù)據(jù)庫如何通過js和ashx交互

安裝后,有個測試的,點擊(如下圖1),選擇“System.Data.SQLite”(默認的),改變“Data Source=已建好的SQLite數(shù)據(jù)庫.db文件相對剛剛安裝的bin目錄的路徑”(例如我安裝的bin目錄是:C:\Program Files (x86)\System.Data.SQLite\2010\bin,我的數(shù)據(jù)庫文件在C:\cff\test下,則我的Data Source=../../../../cff/test/test.db),改好后,點擊“run”,如下圖2,則說明安裝成功

ASP.net與SQLite數(shù)據(jù)庫如何通過js和ashx交互

ASP.net與SQLite數(shù)據(jù)庫如何通過js和ashx交互

此處個人碰到一個問題:需要為數(shù)據(jù)庫所在的上層目錄設(shè)置權(quán)限才能全部Succeeded。錯誤如下:attempt to write a readonly datebase

ASP.net與SQLite數(shù)據(jù)庫如何通過js和ashx交互

解決辦法:找到SQLite數(shù)據(jù)庫所在的文件夾,單擊右鍵,屬性->安全,為Users用戶組添加寫入權(quán)限。這個就不截圖了。

2.在界面主文件夾下添加SQLite.Interop.dll為鏈接;

放錯了或沒有添加鏈接,就會出現(xiàn)錯誤:無法加載 DLL“SQLite.Interop.DLL”: 找不到指定的模塊。 (異常來自 HRESULT:0x8007007E)。

添加正確后如下圖所示:

ASP.net與SQLite數(shù)據(jù)庫如何通過js和ashx交互

3.Web.config配置:

 <connectionStrings>
  <add name="DB_XHKSQLite" connectionString="Data Source=相對安裝目錄的路徑(測試成功的路徑);Pooling=true;FailIfMissing=false" providerName="System.Data.SQLite"/>
 </connectionStrings>

4.SQLiteHelper.cs獲取connectionString,操作(讀?。?shù)據(jù)庫:

復制代碼 代碼如下:


string str = System.Configuration.ConfigurationManager.ConnectionStrings["DB_XHKSQLite"].ToString();

“[]”里的參數(shù)與Web.config的connectionStrings的add的name相對應(yīng)。

另外除了下載工具創(chuàng)建數(shù)據(jù)庫外,還可以參考:https://www.jb51.net/article/67311.htm 用C#代碼創(chuàng)建,并操作SQLite數(shù)據(jù)庫(此方法未實踐,因為我用SQLite Expert Personal 4.1 的圖形化界面實現(xiàn)的,此軟件界面如下圖所示:)

ASP.net與SQLite數(shù)據(jù)庫如何通過js和ashx交互

對于初期的測試,建議用下面內(nèi)容:

(在類庫下此處記得引用System.Configuration,因為默認下他不被引用,當然對于面對VS2010錯誤的你,應(yīng)該自己會發(fā)現(xiàn)的,別的細節(jié)就忽略了,我忘了還有什么細節(jié)了)

從數(shù)據(jù)庫獲取的數(shù)據(jù)時dataset的,此處把它變成datatable,再轉(zhuǎn)成json傳給前臺。

下面是js需要調(diào)用的ashx文件的主干內(nèi)容:

//這是獲取連接字符串
   string str = System.Configuration.ConfigurationManager.ConnectionStrings["DB_XHKSQLite"].ToString();
   DataSet ds = new DataSet();
   //聲明一個Sqlite數(shù)據(jù)庫的鏈接
   using (SQLiteConnection conn = new SQLiteConnection(str))
   {
    //創(chuàng)建sqlite命令
    using (SQLiteCommand comm = conn.CreateCommand())
    {
     //打開數(shù)據(jù)庫鏈接
     conn.Open();
     //select數(shù)據(jù)分頁用limit就行,很方便
     comm.CommandText = "Select * From book";
     using (SQLiteDataAdapter adapter = new SQLiteDataAdapter(comm))
     {
      adapter.SelectCommand = comm;
      adapter.Fill(ds);
     }
     DataTable dt = new DataTable();
     dt = ds.Tables[0];
     // Common.Common ff = new Common.Common();
     string strjson = Common.Common.DataTableToJson(dt, 1);

     context.Response.Write(strjson);


    }
   }

Common.Common.DataTableToJson代碼:(按實際需要改格式)

public static string DataTableToJson(DataTable dt, int count)
  {
   StringBuilder sbjson = new StringBuilder();
   sbjson.Append("{");
   sbjson.Append("\"total\":" + count + ",\"rows\":[");
   if (dt != null)
   {
    for (int i = 0; i < dt.Rows.Count; i++)
    {
     if (i > 0)
     {
      sbjson.Append(",");
      sbjson.Append("{");
      foreach (DataColumn dc in dt.Columns)
      {
       if (dt.Columns.IndexOf(dc) > 0)
       {
        sbjson.Append(",");
        sbjson.Append("\"" + dc.ColumnName + "\":\"" + dt.Rows[i][dc.ColumnName].ToString().Trim() + "\"");
       }
       else
       {
        sbjson.Append("\"" + dc.ColumnName + "\":\"" + dt.Rows[i][dc.ColumnName].ToString().Trim() + "\"");
       }
      }
      sbjson.Append("}");
     }
     else
     {
      sbjson.Append("{");
      foreach (DataColumn dc in dt.Columns)
      {
       if (dt.Columns.IndexOf(dc) > 0)
       {
        sbjson.Append(",");
        sbjson.Append("\"" + dc.ColumnName + "\":\"" + dt.Rows[i][dc.ColumnName].ToString().Trim() + "\"");
       }
       else
       {
        sbjson.Append("\"" + dc.ColumnName + "\":\"" + dt.Rows[i][dc.ColumnName].ToString().Trim() + "\"");
       }
      }
      sbjson.Append("}");
     }
    }
   }
   sbjson.Append("]}");
   return sbjson.ToString();
  }

關(guān)于“ASP.net與SQLite數(shù)據(jù)庫如何通過js和ashx交互”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI