Android開發工程師文集-1 小時學會SQLite

来源:https://www.cnblogs.com/dashucoding/archive/2018/07/08/9281294.html
-Advertisement-
Play Games

前言 大家好,給大家帶來 的概述,希望你們喜歡 內容 什麼是Sqlite: 效率高,開源,小型,程式驅動,支持事務操作,無數據類型,可嵌入的關係型資料庫 獨立的,跨平臺的,代碼量少,簡單易用 創建表語句 刪除表 插入數據 修改數據 更新數據 刪除數據 查詢語句 內容 創建資料庫 實現資料庫中的增刪改 ...


前言

大家好,給大家帶來Android開發工程師文集-1 小時學會SQLite的概述,希望你們喜歡

內容

  • 什麼是Sqlite:
    效率高,開源,小型,程式驅動,支持事務操作,無數據類型,可嵌入的關係型資料庫
    獨立的,跨平臺的,代碼量少,簡單易用

創建表語句

create table student(_id Integer primary key, name varchar(10), age Integer not null);

刪除表

drop table student;

插入數據

Insert into 表名(欄位列表) values (值列表);
insert into student(_id,age) values(1,17);
insert into student values(1,"vic",17);

修改數據

update student set name="vic",age=17 where _id=1;

更新數據

Update 表名 set 欄位=值 列表 更新的條件

刪除數據

delete from 表名 [刪除條件];
delete from student where _id=1;

查詢語句

select 欄位名 from 表名稱 [查詢條件];
select 列名稱 from 表名稱 where 條件;
group by 分組的欄位 having 篩選條件 order by 排序欄位;
select * from student;
select _id from student;
select * from student where _id=1;
select * from student where _id=1 and age>17;
select * from student where age like "%1%";
select * from student where age>17 order by _id=1;

內容

  • 創建資料庫
  • 實現資料庫中的增刪改查

要點

SQLiteOpenHelper,onCreate(),onUpgrade(),onOpen()

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/login_bg"
    android:orientation="vertical">
 <Button
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="創建"
  android:onClick="create"
  android:background="#000000"/>
</LinearLayout>
//MainActivity.java
public class MainActivity extends AppCompatActivity {
  private MySqliteHelper helper;
 @Override
 protected void onCreate(Bundle savedInstanceState){
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);
 helper = DbManger.getIntance(this);
 }
 public void createdb(View view){
  SQLiteDatabase db=helper.getWritableDatable();
 }
}
//創建一個類
//sqliteOpenHelper
//提供了onCreate()和onUpgrade()與onOpen()
public class MySqliteHelper extends SQLiteOpenHelper{
 public MySqliteHelper(Context context, String name, SQLitebase.CursorFactory factory, int version){
 super(context,name,factory,version);
 }
 public MySqliteHelper(Context context){
  super(context,Constant.DATABASE_NAME,null,Constant.DATABASE_VERSION);
}
 //資料庫創建時回調
 @Override
 public void onCreate(SQLiteDatabase db){
  Log.i("tag","--onCreate--");
  //String sql="create table student(_id Integer primary key,name verchar(10),age Integer)";
  String sql = "create table "+Constant.TABLE_NAME+"("+Constant._ID+" Integer primary key,"+Constant.NAME+" varchar(10),"+Constant.AGE+" Integer)";
  db.execSQL(sql);//執行資料庫語句
 }
 //資料庫更新
 @Override
 public void onUpgrade(SQLiteDatabase db,int oldVersion, int newVersion){
  Log.i("tag","--onUpgrade--");
 }
 //資料庫打開
 @Override
 public void onOpen(SQLiteDatabase db){
  super.onOpen(db);
  Log.i("tag","--onOpen--");
 }
}
//創建庫表
public class Contant{
 public static final String DATABASE_NAME=“info.db”;//資料庫名稱
 public static final int DATABASE_VERSION=1;//資料庫的版本號
 public static final String TABLE_NAME="student";//表名
  //用這裡表示
 public static final String _ID="_id";
 public static final String _NAME="name";
 public static final String AGE="age";
public class DbManger{
 private static MySqliteHelper helper;
 public static MySqliteHelper getIntance(Context context){
   if(helper == null){
     helper=new MySqliteHelper(content);
   }
   return hepler;
 }
}
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/login_bg"
    android:orientation="vertical">
 <Button
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="創建"
  android:onClick="create"
  android:background="#000000"/>
<Button
  android:id="@+id/btn_insert"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="插入數據"
  android:onClick="click"
  android:layout_marginTop="15dp"
  android:background="#000000"/>
</LinearLayout>
//MainActivity.java
public class MainActivity extends AppCompatActivity {
  private MySqliteHelper helper;
 @Override
 protected void onCreate(Bundle savedInstanceState){
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);
 helper = DbManger.getIntance(this);
 }
 public void createdb(View view){
  SQLiteDatabase db=helper.getWritableDatable();
 }
 public void click(View view){
  switch(view.getId()){
   case R.id.btn_insert:
    SQLiteDatabase db=helper.getWritableDatabase();
    String sql="insert into "+Constant.TABLE_NAME+" values(1,'vic',17)";
    DbManger.execSQL(db,sql);
    String sql2="insert into "+Constant.TABLE_NAME+" values(2,'vic',23)";
    DbManger.execSQL(db,sql2);
    db.close();
    break;
 }
}
public class DbManger{
 private static MySqliteHelper helper;
 public static MySqliteHelper getIntance(Context context){
   if(helper == null){
     helper=new MySqliteHelper(content);
   }
   return hepler;
 }
 public static void execSQL(SQLiteDatabase db,String sql){
  if(db!=null){
   if(sql!=null && !"".equals(sql)){
     db.execSQL(sql);
  }
 }
}
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/login_bg"
    android:orientation="vertical">
 <Button
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="創建"
  android:onClick="create"
  android:background="#000000"/>
<Button
  android:id="@+id/btn_insert"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="插入數據"
  android:onClick="click"
  android:layout_marginTop="15dp"
  android:background="#000000"/>
<Button
  android:id="@+id/btn_update"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="修改數據"
  android:onClick="click"
  android:layout_marginTop="15dp"
  android:background="#000000"/>
</LinearLayout>
//MainActivity.java
public class MainActivity extends AppCompatActivity {
  private MySqliteHelper helper;
 @Override
 protected void onCreate(Bundle savedInstanceState){
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);
 helper = DbManger.getIntance(this);
 }
 public void createdb(View view){
  SQLiteDatabase db=helper.getWritableDatable();
 }
 public void click(View view){
  switch(view.getId()){
   case R.id.btn_insert:
    SQLiteDatabase db=helper.getWritableDatabase();
    String sql="insert into "+Constant.TABLE_NAME+" values(1,'vic',17)";
    DbManger.execSQL(db,sql);
    String sql2="insert into "+Constant.TABLE_NAME+" values(2,'vic',23)";
    DbManger.execSQL(db,sql2);
    db.close();
    break;
   case R.id.btn_update:
    db=helper.getWritableDatabase();
    String updateSql="update "+Constant.TABLE_NAME"+" set "+Contant.NAME+"='vic2' where "+Contant._ID+"=1";
    DbManger.execSQL(db,updateSql);
    db.close();
    break;
 }
}
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/login_bg"
    android:orientation="vertical">
 <Button
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="創建"
  android:onClick="create"
  android:background="#000000"/>
<Button
  android:id="@+id/btn_insert"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="插入數據"
  android:onClick="click"
  android:layout_marginTop="15dp"
  android:background="#000000"/>
<Button
  android:id="@+id/btn_update"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="修改數據"
  android:onClick="click"
  android:layout_marginTop="15dp"
  android:background="#000000"/>
<Button
  android:id="@+id/btn_delete"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="刪除數據"
  android:onClick="click"
  android:layout_marginTop="15dp"
  android:background="#000000"/>
</LinearLayout>
//MainActivity.java
public class MainActivity extends AppCompatActivity {
  private MySqliteHelper helper;
 @Override
 protected void onCreate(Bundle savedInstanceState){
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);
 helper = DbManger.getIntance(this);
 }
 public void createdb(View view){
  SQLiteDatabase db=helper.getWritableDatable();
 }
 public void click(View view){
  switch(view.getId()){
   case R.id.btn_insert:
    SQLiteDatabase db=helper.getWritableDatabase();
    String sql="insert into "+Constant.TABLE_NAME+" values(1,'vic',17)";
    DbManger.execSQL(db,sql);
    String sql2="insert into "+Constant.TABLE_NAME+" values(2,'vic',23)";
    DbManger.execSQL(db,sql2);
    db.close();
    break;
   case R.id.btn_update:
    db=helper.getWritableDatabase();
    String updateSql="update "+Constant.TABLE_NAME"+" set "+Contant.NAME+"='vic2' where "+Contant._ID+"=1";
    DbManger.execSQL(db,updateSql);
    db.close();
    break;
   case R.id.btn_delete:
    db=helper.getWritableDatabase();
    String delSql="delete from "+Constant.TABLE_NAME+" where "+Constant._ID+"=2";
    DbManger.execSQL(db,delSql);
    db.close();
    break;
 }
}
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/login_bg"
    android:orientation="vertical">
 <Button
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="創建"
  android:onClick="create"
  android:background="#000000"/>
<Button
  android:id="@+id/btn_insert"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="插入數據"
  android:onClick="click"
  android:layout_marginTop="15dp"
  android:background="#000000"/>
<Button
  android:id="@+id/btn_update"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="修改數據"
  android:onClick="click"
  android:layout_marginTop="15dp"
  android:background="#000000"/>
<Button
  android:id="@+id/btn_delete"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="刪除數據"
  android:onClick="click"
  android:layout_marginTop="15dp"
  android:background="#000000"/>
<Button
  android:id="@+id/btn_insertApi"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="插入數據"
  android:onClick="onclick"
  android:layout_marginTop="15dp"
  android:background="#000000"/>
</LinearLayout>
//MainActivity.java
public class MainActivity extends AppCompatActivity {
  private MySqliteHelper helper;
 @Override
 protected void onCreate(Bundle savedInstanceState){
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);
 helper = DbManger.getIntance(this);
 }
 public void createdb(View view){
  SQLiteDatabase db=helper.getWritableDatable();
 }
 public void onClick(View view){
  switch(view.getId()){
   case R.id.btn_insertApi:
    SQLiteDatabase db=helper.getWritableDatabase();
    ContentValues values=new ContentValues();
    values.put(Constant._ID,3);
    values.put(Constant.NAME,"vic");
    values.put(Constant.AGE,17);
    long result=db.insert(Constant.TABLE_NAME,null,values);
    if(result>0){
     Toast.makeText(MainActivity.this,"插入數據成功!",Toast.LENGTH_LONG).show();
    }else{
      Toast.makeText(MainActivity.this,"插入數據失敗!",Toast.LENGTH_LONG).show();
    }
    db.close();
    break;
   }
}

 public void click(View view){
  switch(view.getId()){
   case R.id.btn_insert:
    SQLiteDatabase db=helper.getWritableDatabase();
    String sql="insert into "+Constant.TABLE_NAME+" values(1,'vic',17)";
    DbManger.execSQL(db,sql);
    String sql2="insert into "+Constant.TABLE_NAME+" values(2,'vic',23)";
    DbManger.execSQL(db,sql2);
    db.close();
    break;
   case R.id.btn_update:
    db=helper.getWritableDatabase();
    String updateSql="update "+Constant.TABLE_NAME"+" set "+Contant.NAME+"='vic2' where "+Contant._ID+"=1";
    DbManger.execSQL(db,updateSql);
    db.close();
    break;
   case R.id.btn_delete:
    db=helper.getWritableDatabase();
    String delSql="delete from "+Constant.TABLE_NAME+" where "+Constant._ID+"=2";
    DbManger.execSQL(db,delSql);
    db.close();
    break;
 }
}
<Button
  android:id="@+id/btn_insertApi"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="插入數據"
  android:onClick="onclick"
  android:layout_marginTop="15dp"
  android:background="#000000"/>
<Button
  android:id="@+id/btn_updateApi"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="更新數據"
  android:onClick="onclick"
  android:layout_marginTop="15dp"
  android:background="#000000"/>
public void onClick(View view){
  switch(view.getId()){
   case R.id.btn_insertApi:
    SQLiteDatabase db=helper.getWritableDatabase();
    ContentValues values=new ContentValues();
    values.put(Constant._ID,3);
    values.put(Constant.NAME,"vic");
    values.put(Constant.AGE,17);
    long result=db.insert(Constant.TABLE_NAME,null,values);
    if(result>0){
     Toast.makeText(MainActivity.this,"插入數據成功!",Toast.LENGTH_LONG).show();
    }else{
      Toast.makeText(MainActivity.this,"插入數據失敗!",Toast.LENGTH_LONG).show();
    }
    db.close();
    break;
   case R.id.btn_updateApi:
    //String table 修改的數據表的名稱,ContentValues values,String whereClause 表示修改條件,String[] whereArgs
    db=helper.getWritableDatabase();
    //db.update(String table,ContentValues values,String whereClause,String[] whereArgs);
    ContentValues cv=new ContentValues();
    cv.put(Contant.NAME,"vic3");
    int count=db.update(Constant.TABLE_NAME,cv,Contant.TABLE_NAME,cv,Constant._ID+"=?",new String[]{"3"});
    if(count>0){
     Toast.makeText(MainActivity.this,"插入數據成功!",Toast.LENGTH_LONG).show();
    }else{
      Toast.makeText(MainActivity.this,"插入數據失敗!",Toast.LENGTH_LONG).show();
    }
    db.close();
    break;
   }
}
<Button
  android:id="@+id/btn_updateApi"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="更新數據"
  android:onClick="onclick"
  android:layout_marginTop="15dp"
  android:background="#000000"/>
public void onClick(View view){
  switch(view.getId()){
   case R.id.btn_insertApi:
    SQLiteDatabase db=helper.getWritableDatabase();
    ContentValues values=new ContentValues();
    values.put(Constant._ID,3);
    values.put(Constant.NAME,"vic");
    values.put(Constant.AGE,17);
    long result=db.insert(Constant.TABLE_NAME,null,values);
    if(result>0){
     Toast.makeText(MainActivity.this,"插入數據成功!",Toast.LENGTH_LONG).show();
    }else{
      Toast.makeText(MainActivity.this,"插入數據失敗!",Toast.LENGTH_LONG).show();
    }
    db.close();
    break;
   case R.id.btn_updateApi:
    //String table 修改的數據表的名稱,ContentValues values,String whereClause 表示修改條件,String[] whereArgs
    db=helper.getWritableDatabase();
    //db.update(String table,ContentValues values,String whereClause,String[] whereArgs);
    ContentValues cv=new ContentValues();
    cv.put(Contant.NAME,"vic3");
    int count=db.update(Constant.TABLE_NAME,cv,Contant.TABLE_NAME,cv,Constant._ID+"=?",new String[]{"3"});
    if(count>0){
     Toast.makeText(MainActivity.this,"插入數據成功!",Toast.LENGTH_LONG).show();
    }else{
      Toast.makeText(MainActivity.this,"插入數據失敗!",Toast.LENGTH_LONG).show();
    }
    db.close();
    break;
  case R.id.btn_deleteApi:
  db=helper.getWritableDatabase();

  //int count2=db.delete(String table,StringwhereClause,String[] whereArgs);
  int count2=db.delete(Constant.TABLE_NAME,Constant._ID+"=?",new String[]{"1"});
  if(count2>0){
     Toast.makeText(MainActivity.this,"插入數據成功!",Toast.LENGTH_LONG).show();
    }else{
      Toast.makeText(MainActivity.this,"插入數據失敗!",Toast.LENGTH_LONG).show();
    }
  db.close();
  break;
}
 public int delete(String table,String whereClause,String[] whereArgs){
  acquireReference();
  try{
   SQLiteStatement statement = new SQLiteStatement(this,"DELETE FROM "+table+(!TextUtils.isEmpty(whereClause) ? " WHERE "+whereClause : ""), whereArgs;
 try{
  return statement.executeUpdateDelete();
  }finally{
   statement.close();
  }
  }finally{
  releaseReference();
}

總結

  • 本文講了Android開發工程師文集-1 小時學會SQLite,如果您還有更好地理解,歡迎溝通
  • 定位:分享 Android&Java知識點,有興趣可以繼續關註

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1.ProxySQL中的庫 使用ProxySQL的Admin管理介面連上ProxySQL,可查看ProxySQL擁有的庫。 其中: main庫是ProxySQL最主要的庫,是 需要修改配置時使用的庫 ,它其實是一個 記憶體資料庫系統 。所以,修改main庫中的配置後,必須將其持久化到disk上才能永久 ...
  • 一.資料庫的增刪改查 1.新建資料庫 資料庫名規則:可以由字母、數字、下劃線、@、#、$ 區分大小寫, 不能使用關鍵字如 create select, 不能單獨使用數字, 最長128位 2.查看資料庫 3.選擇資料庫 4.刪除資料庫 5.修改資料庫字元編碼 二.數據表的增刪改查 1.創建表 註意:同 ...
  • 1.簡介和安裝 sysbench是一個很不錯的資料庫性能測試工具。 官方站點:https://github.com/akopytov/sysbench/ rpm包下載:https://packagecloud.io/akopytov/sysbench/packages/el/7/sysbench 1 ...
  • 1.簡介 1.1.sql:Structured Query Language 結構化查詢語言 1.2.windows在目錄路徑中使用反斜線\,unix和linux使用正斜線/ 1.3.Number(a,b) a為總有效位數,b為最多小數位數 1.4.Insert into 表名(需指定主鍵及要求非空 ...
  • 視頻課程:李興華 Oracle從入門到精通視頻課程 學習者:陽光羅諾 視頻來源:51CTO學院 Oracle資料庫從入門到精通-單行函數 在資料庫中,為了方便用戶的數據開發,往往會提供一系列的支持函數,利用這些函數可以針對於數據處理。 例如:在進行根據姓名查詢的時候,如果說姓名本身是大寫字母,而查詢 ...
  • 提示框,菜單,數據存儲,組件篇 Toast Toast.makeText(context, text, 時間).show(); setDuration();//設置時間 setGravity();//位置 獲取: 添加toast.getView(); imageView添加到toast中,addVi ...
  • 前言 大家好,給大家帶來 的概述,希望你們喜歡 Activity是什麼 作為一個Activity,就是一個界面,當我們在手機上打開一個APP時,你看到的頁面就是基於Activity生成的。 那麼你再點擊一個按鈕跳轉到另一個界面時,就是又一個Activity界面,由Activity可以分出很多的知識點 ...
  • 前言 大家好,給大家帶來 的概述,希望你們喜歡 TextView控制項 TextView控制項有哪些屬性: EditText控制項 EditText控制項有哪些屬性: 設置顏色 1. 在xml中是android:textColor 2. 在Activity中是setTextColor AutoComplet ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...