91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Apex和Database相關知識點有哪些

發布時間:2021-11-19 11:17:47 來源:億速云 閱讀:231 作者:iii 欄目:云計算

本篇內容主要講解“Apex和Database相關知識點有哪些”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Apex和Database相關知識點有哪些”吧!

salesforce.com 是世界上第一個提出云計算平臺的公司,同時,它還引入了世界上第一門云計算編程語言Apex。

1. Get Started with Apex

Learning Objectives

完成本單元后,您將能夠:

  • 描述Apex編程語言的主要功能。

  • 保存一個Apex類并使用Anonymous.Apex調用方法。

  • 使用開發者控制臺檢查調試日志。

Apex和Database相關知識點有哪些

Apex的特點:
  • 代碼托管-在服務器Lightning Platform上保存,編譯和執行Apex。

  • Apex是不區分大小寫的語言

Apex命名規范(這里我用的是Java的規范)
  1. 類名首字母大寫,如果類名由多個單詞組成,每個單詞的首字母都要大寫。 如:

public class MyFirstClass{}
  1. 變量名、方法名首字母小寫, 如果名稱由多個單詞組成,除第一個單詞外,其他每個單詞的首字母都要大寫。 如:

int index=0;
public void toString(){}
  1. 常量名全部大寫

Apex支持以下數據類型:
  • Primitive (Integer, Double, Long, Date, Datetime, String, ID, or Boolean) 原始數據類型(整數,雙精度,長整型,日期,日期時間,字符串,ID或布爾值)

  • Collections (Lists, Sets and Maps)

  • sObject

    • 這是Salesforce中的特殊數據類型。

    • 它類似于SQL中的表,并且包含與SQL中的列類似的字段。

    • 有兩種類型的sObjects:Standard和Custom。

    • 例如,Account是一個標準的sObject ; 任何其他用戶定義的對象(如我們創建的Customer對象)是Custom sObject。

  • Enums 枚舉

  • Classes, Objects and Interfaces 類,對象和接口

Reference:

Apex數據類型-W3School


  • Trailhead Apex Practice https://trailhead.salesforce.com/content/learn/modules/apex_database/apex_database_intro

Create an Apex class with a method that returns an array (or list) of strings. Create an Apex class with a method that returns an array (or list) of formatted strings ('Test 0', 'Test 1', ...). The length of the array is determined by an integer parameter.

  • The Apex class must be called StringArrayTest and be in the public scope

  • The Apex class must have a public static method called generateStringArray

    • The generateStringArray method must return an array (or list) of strings

    • The method must accept an incoming Integer as a parameter, which will be used to determine the number of returned strings

    • The method must return a string value in the format Test n where n is the index of the current string in the array

/*
Apply To: Trailhead Apex Practice
Created On: 05-14-2021
Function: 
Developer        Date            Version    Description
-------------------------------------------------
charles         05-14-2021         V1.0    Initial Version
*/
//apex class
class StringArrayTest{
	//Apex method that takes in an Integer parameter and returns a List of Strings 
	public static void generateStringArray(Integer n){
	//Create a List of Strings
	List<String> result = new List<String>(); 
	//Interate through a for loop to populate the array of Strings 
	for(Integer i=0; i<n; i++){
	    result.add('Test'+i); 
	System.debug(result[i]); 
	}
	    return result; 
	}
}
  1. In the Developer Console, click Debug | Open Execute Anonymous Window.

  2. In the window that opens, enter the following.

StringArrayTest.generateStringArray(5);

Apex和Database相關知識點有哪些

In the sample code above, you create an Apex class called StringArrayTest. You create a method called generateStringArray which takes in an Integer parameter and returns a List of Strings. If you fully understand the code above, then you should be able to complete this challenge with a breeze. However, if you're not too familar with the code above, I'd recommend going through to the tutorial pages I linked above and read through to learn Apex first. I wish you best of luck and continue your journey to become Platform Dev Certified! Apex和Database相關知識點有哪些


2. Use sObjects

Salesforce中的每條記錄(行)都在Apex中本地表示為sObject。Salesforce中的標準和自定義對象記錄映射到Apex中的sObject類型。 以下是Apex中用于標準對象的一些常見sObject類型名稱。

  • Account

  • Contact

  • Lead

  • Opportunity

創建一個sObject,您需要聲明一個變量,并將其分配給一個sObject實例。變量的數據類型是sObject類型。 以下示例創建一個類型為Account的sObject變量,并將其分配給名稱為charles的新帳戶。

Account acct = new Account(Name='charles');

sObject和字段名

對于自定義對象和自定義字段,API名稱始終以__c后綴結尾。 對于自定義關系型(Relationship)字段,API名稱以__r后綴結尾。 例如:

  • 標簽為Merchandise的自定義對象的API名稱為Merchandise__c。

  • 標有Description標簽的自定義字段的API名稱為Description__c。

  • 標有Items標簽的自定義關系型字段的API名稱為Items__r。

創建sObjects并添加字段

在插入Salesforce記錄之前,必須首先在內存中將其創建為sObject。 與其他任何對象一樣,sObject是使用new運算符創建的:

ccount acct = new Account();

API對象名稱為Apex中sObject變量的數據類型。 在此示例中,Account是acct變量的數據類型。 acct變量引用的Account為空,因為我們尚未填充其任何字段。 有兩種添加字段的方法:通過構造函數或使用.表示法。

添加字段的最快方法是在構造函數中將它們指定為“名稱/值”對。 例如,此語句創建一個新帳戶sObject,并使用字符串值填充其“名稱”字段。

Account acct = new Account(Name='charles');

Name字段是帳戶唯一必填的字段,這意味著必須先填充該字段,然后才能插入新記錄。 但是,您也可以為新記錄填充其他字段。 此示例還添加了電話號碼和員工人數。

Account acct = new Account(Name='charles', Phone='(415)555-1212', NumberOfEmployees=10000);

或者,您可以使用點表示法將字段添加到sObject。 以下內容與前面的示例等效,盡管它需要花費更多的代碼行。

Account acct = new Account();
acct.Name = 'charles';
acct.Phone = '(415)555-1212';
acct.NumberOfEmployees = 10000;

通常,在使用sObjects時,您使用特定的sObject數據類型,例如,標準對象使用Account或Book定制對象使用Book__c。 但是,當您不知道方法要處理的sObject類型時,可以使用通用的sObject數據類型

使用通用sObject數據類型聲明的變量可以引用任何Salesforce記錄,無論是標準記錄還是自定義對象記錄
Apex和Database相關知識點有哪些

這個例子顯示了如何通用sObject變量可以分配給任何Salesforce對象:一個名為Book__c的帳戶和一個自定義對象。

sObject sobj1 = new Account(Name='Trailhead');
sObject sobj2 = new Book__c(Name='Workbook 1');

相反,使用特定sObject數據類型聲明的變量只能引用相同類型的Salesforce記錄。

Apex和Database相關知識點有哪些

在處理通用sObject時,有時需要將sObject變量轉換為特定的sObject類型。 這樣做的好處之一是能夠使用點符號來訪問字段,而點符號在通用sObject上不可用。 由于sObject是所有特定sObject類型的父類型,因此可以將通用sObject強制轉換為特定sObject。 本示例說明如何將通用sObject強制轉換為Account。

// Cast a generic sObject to an Account
Account acct = (Account)myGenericSObject;
// Now, you can use the dot notation to access fields on Account
String name = acct.Name;
String phone = acct.Phone;

3. Manipulate Records with DML

Learning Objectives

完成本單元后,您將能夠:

  • 使用DML插入,更新和刪除記錄。

  • 批量執行DML語句。

  • 使用upsert插入或更新記錄。

  • 捕獲DML異常。

  • 使用數據庫方法插入帶有部分成功選項的新記錄并處理結果。

  • 知道何時使用DML語句以及何時使用數據庫方法。

  • 對相關記錄執行DML操作。


使用數據處理語言(縮寫為DML)在Salesforce中創建和修改記錄。 DML通過提供簡單的語句來插入,更新,合并,刪除和還原記錄,從而提供了一種直接的記錄管理方法。

因為Apex是一種以數據為中心的語言,并且保存在Lightning Platform上,所以它可以直接訪問Salesforce中的數據。 與其他需要額外設置才能連接到數據源的編程語言不同,使用Apex DML,管理記錄變得非常容易! 通過調用DML語句,您可以快速對Salesforce記錄執行操作。

本示例將charles帳戶添加到Salesforce。 首先創建一個帳戶sObject,然后將其作為參數傳遞給insert語句,該語句將記錄保留在Salesforce中。

// Create the account sObject 
Account acct = new Account(Name = 'charles',Phone = '(415)555-1212',NumberOfEmployees=10000);
// Insert the account by using DML
insert acct;
DML語句

以下DML語句可用。

  • insert

  • update

  • upsert

  • delete

  • undelete

  • merge

每個DML語句都接受單個sObject或一個sObject列表(或數組)。 在sObjects列表上進行操作是一種處理記錄的更有效方法。

除了幾個語句外,所有這些語句都是熟悉的數據庫操作。 upsert和merge語句特定于Salesforce,并且非常方便。

upsert DML操作使用指定的字段來確定是否存在現有對象,如果沒有指定字段,則使用ID字段在單個語句中創建新記錄并更新sObject記錄。

除了幾個語句外,所有這些語句都是熟悉的數據庫操作。 upsert和merge語句特定于Salesforce,并且非常方便。

merge語句將多達三個相同sObject類型的記錄合并到其中一個記錄中,刪除其他記錄,并重新關聯任何相關記錄。

ID字段自動分配給新記錄

插入記錄時,系統會為每個記錄分配一個ID。 除了將ID值保留在數據庫中之外,ID值還將自動填充到在DML調用中用作參數的sObject變量上。

本示例說明如何獲取與插入帳戶相對應的sObject上的ID。

/*
 * Apply To: DML Practice
 * Created On: 05-15-2021
 * Developer        Date            Version    Description
 * -------------------------------------------------
 * charles        05-15-2021         V1.0    Initial Version
 */
public class DMLPractice1 {
    public static void testDML(){
        //Create the account sObject 
        Account acct  = new Account(Name='charles',Phone = '(415)555-1212',NumberOfEmployees=100); 
        Insert acct; 
        //Get the new ID on the inserted sObject argument
        ID acctID = acct.Id; 
        System.debug('ID='+acctID); 
        //Debug log result(the ID will be different in your case)
    }
}

Apex和Database相關知識點有哪些

Beyond the Basics

因為示例中的sObject變量在DML調用之后包含ID,所以您可以重用此sObject變量以執行進一步的DML操作,例如更新,因為系統將能夠通過匹配ID將sObject變量映射到其對應的記錄。 您可以從數據庫中檢索記錄以獲取其字段,包括ID字段,但是DML無法做到這一點。 您需要使用SOQL編寫查詢。 您將在另一個單元中學習SOQL。

批量DML

您可以在單個sObject上執行批量DML操作,也可以在sObject列表上批量執行DML操作。 建議執行批量DML操作,因為這有助于避免達到調控器限制,例如,每個Apex事務的DML限制為150條語句。 設置此限制是為了確保公平訪問Lightning Platform中的共享資源。 在sObject列表上執行DML操作被視為一個DML語句,而不是每個sObject的一個語句。


DML Practice1

Create a method for inserting accounts. To pass this challenge, create an Apex class that inserts a new account named after an incoming parameter. If the account is successfully inserted, the method should return the account record. If a DML exception occurs, the method should return null.

  • The Apex class must be called AccountHandler and be in the public scope

  • The Apex class must have a public static method called insertNewAccount

    • The method must accept an incoming string as a parameter, which will be used to create the Account name

    • The method must insert the account into the system and then return the record

    • The method must also accept an empty string, catch the failed DML and then return null

/*
 * Apply To: DML Practice
 * Created On: 05-15-2021
 *
 * Developer        Date            Version    Description
 * -------------------------------------------------
 * charles        05-15-2021         V1.0    Initial Version
 * 
 */
public class AccountHandler {
	
    public static Account insertNewAccount(String accountName){
        Account acct = new Account(Name = accountName);
        try {  
            insert acct; 
        }catch(DmlException e){
            System.debug('A DML exception has occurred: '+e.getMessage()); 
       		return null; 
        }
        return acct; 
    }
}

如果發現問題或有更好的方法歡迎交流討論。

Apex和Database相關知識點有哪些


DML Practice2

Create a class and one method that creates a specified number of new accounts and adds them to the database. Create a public Apex class named AccountHandler

  • Add a public static method to the class:

  • Name: insertAccount

  • Include a parameter for the number of new accounts:

    • Data type: Integer

  • Create a list of Account records:

    • List name: addAccounts

Use a while loop to add n new Accounts to the list, where n is a value that is incremented by 1 during each iteration of the loop:

  • Name: Acme Inc n

  • AccountNumber: A000n

    • Hint: You did something like this when you created three new Tea Factory stores. Write one DML statement that inserts all the records into the database at one time Run your insertAccount method

/*
 * Apply To: DML Practice
 * Created On: 05-20-2021
 * 
 * Developer        Date            Version    Description
 * -------------------------------------------------
 * charles        05-20-2021         V1.0    Initial Version
 * 
 */
public class AccountHandler {
    public static void insertAccount(Integer n){
        List<Account> addAccounts = new List<Account>(); 
        for(Integer i = 0; i<n; i++){
            Account acct = new Account(); 
       		acct.Name = 'Acme In'+i; 
            acct.AccountNumber = 'A000'+i; 
          	addAccounts.add(acct); 
        }
        try{
            insert addAccounts; 
        }catch(DMLException e){
            System.debug('A DML Exception has occurred'+e.getMessage()); 
        }
    }
}

在匿名窗口中執行下面的代碼:

AccountHandler.insertAccount(10);

效果演示:

  • 執行上述代碼前: 我的Acounts下面只有3條記錄
    Apex和Database相關知識點有哪些

  • 執行上述代碼后: 我的Accounts下面多了10條記錄
    Apex和Database相關知識點有哪些 結果Trailhead報錯了,我才知道理解錯了,我以為Acme Inc n的意思是Acme Inc 1 , Acme Inc 2 , Acme Inc 3.... Apex和Database相關知識點有哪些

改正后的做法:

/*
 * Apply To: DML Practice
 * Created On: 05-20-2021
 * 
 * Developer        Date            Version    Description
 * -------------------------------------------------
 * charles        05-20-2021         V2.0    Initial Version
 * 
 */
public class AccountHandler {
    public static void insertAccount(Integer n){
        List<Account> addAccounts = new List<Account>(); 
        for(Integer i = 0; i<n; i++){
            Account acct = new Account(); 
       		acct.Name = 'Acme Inc'; 
            acct.AccountNumber = 'A000'; 
          	addAccounts.add(acct); 
        }
        try{
            insert addAccounts; 
        }catch(DMLException e){
            System.debug('A DML Exception has occurred'+e.getMessage()); 
        }
    }
}

效果演示: 成功在Accounts上插入了10條數據 Apex和Database相關知識點有哪些

Apex和Database相關知識點有哪些

4. Write SOQL Queries

Learning Objectives

  • 在Apex中編寫SOQL查詢。

  • 通過使用開發人員控制臺中的查詢編輯器執行SOQL查詢。

  • 通過使用匿名Apex執行嵌入在Apex中的SOQL查詢。

  • 查詢相關記錄。

Reference

Use sObjects and DML Learning Objectives

編寫SOQL查詢

要從Salesforce中讀取記錄,您必須編寫查詢。Salesforce提供了Salesforce對象查詢語言(簡稱SOQL),可用于讀取保存的記錄。SOQL與標準SQL語言類似,但是為Lightning Platform定制的。

由于Apex可以直接訪問存儲在數據庫中的Salesforce記錄,因此您可以將SOQL查詢嵌入到Apex代碼中,并以簡單的方式獲取結果。當SOQL嵌入Apex中時,稱為內聯SOQL

要將SOQL查詢包含在Apex代碼中,請將SOQL語句包裝在方括號[ ]中,然后將返回值分配給sObjects數組。例如,以下內容檢索具有兩個字段Name和Phone的所有帳戶記錄,并返回一個Account sObjects數組。

Account [ ] acct = [select Name,Phone from Account];

預備知識

本單元中的某些查詢期望組織擁有客戶和聯系人。 在運行查詢之前,請創建一些示例數據。

  1. 在開發人員控制臺

  2. 在窗口中插入以下代碼片段,然后單擊執行。

/*
 * Apply To: SOQL Practice
 * Created On: 05-16-2021
 * 
 * Developer        Date            Version    Description
 * -------------------------------------------------
 * charles        05-16-2021         V1.0    Initial Version
 * 
 */
public class SOQLPractice1 {
    public static void testSOQL(){
        // Add account and related contact
        Account acct = new Account(
            Name='SFDC Computing',
            Phone='(415)555-1212',
            NumberOfEmployees=50,
            BillingCity='San Francisco');
        insert acct;
        // Once the account is inserted, the sObject will be 
        // populated with an ID.
        // Get this ID.
        ID acctID = acct.ID;
        // Add a contact to this account.
        Contact con = new Contact(
            FirstName='Carol',
            LastName='Ruiz',
            Phone='(415)555-1212',
            Department='Wingo',
            AccountId=acctID);
        insert con;
        // Add account with no contact
        Account acct2 = new Account(
            Name='The SFDC Query Man',
            Phone='(310)555-1213',
            NumberOfEmployees=50,
            BillingCity='Los Angeles',
            Description='Expert in wing technologies.');
        insert acct2;
        
    }
}

Apex和Database相關知識點有哪些

擴展

與其他SQL語言不同,您不能使用*來查詢 所有記錄。 您必須指定要顯式獲取的每個字段。 如果您嘗試訪問未在SELECT子句中指定的字段,則會收到錯誤消息,因為尚未檢索到該字段。

您無需在查詢中指定Id字段,因為無論在查詢中是否指定,它始終會在Apex查詢中返回。 例如:SELECT Id,Phone FROM Account和SELECT Phone FROM Account是等效的語句。 如果您要檢索的是唯一字段,則可能只有一次需要指定ID字段,因為您必須至少列出一個字段:SELECT Id FROM Account。 在查詢編輯器中運行查詢時,您可能還需要指定ID字段,因為除非指定,否則不會顯示ID字段。

在SOQL查詢中訪問變量

如果Apex中的SOQL語句前面帶有冒號(:),則它們可以引用Apex代碼變量和表達式。在SOQL語句中使用局部變量稱為 bind。

本示例說明了如何使用 targetDeparment WHERE子句中的變量。

String targetDepartment = 'Wingo';
Contact[] techContacts = [SELECT FirstName,LastName 
                          FROM Contact WHERE Department=:targetDepartment];
SOQL Practice

Create an Apex class that returns contacts based on incoming parameters. For this challenge, you will need to create a class that has a method accepting two strings. The method searches for contacts that have a last name matching the first string and a mailing postal code matching the second. It gets the ID and Name of those contacts and returns them.

  • The Apex class must be called ContactSearch and be in the public scope

  • The Apex class must have a public static method called searchForContacts

    • The method must accept two incoming strings as parameters

    • The method should then find any contact that has a last name matching the first string, and mailing postal code (API name: MailingPostalCode) matching the second string

    • The method should finally return a list of Contact records of type List that includes the ID and Name fields

/*
 * Apply To: SOQL Practice
 * Created On: 05-16-2021
 * 
 * Developer        Date            Version    Description
 * -------------------------------------------------
 * charles        05-16-2021         V1.0    Initial Version
 * 
 */
public class ContactSearch {
	
    public static List<Contact> searchForContacts(String parm1,String parm2){
       	List<Contact> contactList = [select ID,Name from Contact where( LastName =: parm1 AND MailingPostalCode =: parm2)];         
             return contactList;   
    }
}

Apex和Database相關知識點有哪些

4. Write SOSL Queries

Learning Objectives

  • 描述SOSL和SOQL之間的區別。

  • 使用SOSL查詢跨多個對象搜索字段。

  • 通過使用開發人員控制臺中的查詢編輯器執行SOSL查詢。


編寫SOSL查詢 Salesforce對象搜索語言(SOSL)是一種Salesforce搜索語言,用于在記錄中執行文本搜索。使用SOSL在Salesforce中跨多個標準和自定義對象記錄搜索字段。SOSL與Apache Lucene相似。 將SOSL查詢添加到Apex很簡單-您可以將SOSL查詢直接嵌入到Apex代碼中。當SOSL嵌入Apex中時,稱為內聯SOSL。

6. Salesforce Developer Console Shortcut Key
  • Ctrl+. :表示代碼自動補全功能

  • Ctrl+D :表示刪除光標所在的行

  • Ctrl+Alt+N : 將光標放在一條語句上,然后點擊右上角的’Go To’就會跳到相應的語句中

  • Shift+Tab : 表示格式化選中的代碼

7.Define Sets and Maps

Learning Objectives

After completing this unit, you’ll be able to:

  • Create sets and maps.

  • Describe how lists, sets, and maps differ.

  • Decide when to use a set instead of a list.

如您所知,列表是具有相同數據類型的項目的有序集合。 每個項目都有一個稱為索引的位置。 這使按編號索引檢索列表中的項目變得容易。 但是Apex的收藏不僅僅是列表。 集合的其他兩種類型是集合和映射。

Set

到目前為止,您已經創建了一種Collection類型,列表。set集合是相同類型的無序唯一項集合。與List列表類似,Set集合是一組稱為元素的項,所有元素都具有相同的數據類型,如字符串、整數甚至Account。與List列表不同,集合不維護其元素的特定順序。因為元素是無序的,所以Set集合不能有任何重復。如果你試圖添加一個已經在Set集合中的元素,你不會得到一個錯誤,但是新值不會添加到Set集合中。
請記住,在循環遍歷List列表時,總是按照添加到List列表中的項的順序訪問它的項。當循環遍歷一個Set集合時,因為元素是無序的,所以可以以隨機順序訪問元素。

/*
 * Apply To: Set Practice
 * Created On: 05-20-2021
 * 
 * Developer        Date            Version    Description
 * -------------------------------------------------
 * charles        05-20-2021         V1.0    Initial Version
 * 
 */
public class SetPractice {
    public static void testSet(){
        Set<String> teaTypes = new Set<String>(); 
        teaTypes.add('Black'); 
        teaTypes.add('White'); 
        teaTypes.add('Herbal'); 
        System.debug(teaTypes); 
    }
}

匿名窗口執行:

SetPractice.testSet();

Apex和Database相關知識點有哪些

Map

與List列表或Set集合相比,Map是更復雜的集合。映射中的每個項目都有兩個部分:鍵和值,稱為鍵值對。鍵和值可以是任何數據類型。盡管每個鍵都是唯一的,但是值可以在映射中重復。想象一下電話國家代碼的映射。國家/地區代碼是鍵,國家/地區名稱是值。每個國家/地區代碼都是唯一的,但是國家/地區可以重復(因為一個國家/地區可能包含多個國家/地區代碼)。

put方法

要將鍵值對添加到Map,請使用put方法,如下所示:
Apex和Database相關知識點有哪些
put方法需要兩個參數:鍵和值。 讓我們創建一個茶類型(鍵)及其風味特征(值)的映射。

Tea Types and Flavor Profiles

Apex和Database相關知識點有哪些

Create a Map

/*
 * Apply To: Map Practice
 * Created On: 05-20-2021
 * 
 * Developer        Date            Version    Description
 * -------------------------------------------------
 * charles        05-20-2021         V1.0    Initial Version
 * 
 */
public class Tea {
    public static void orderTea(){
		Map<String,String> teaTypes = new Map<String,String>(); 
		teaTypes.put('Black','Earthy'); 
		teaTypes.put('White','Sweet'); 
		teaTypes.put('herbal','Sweet'); 
		System.debug(teaTypes);         
    }    
}

Apex和Database相關知識點有哪些

重點

List代表一類的有序數據列表。數據序號從0開始。與JAVA不同的是:List是一個類,并且不存在ArrayList等子類。即實例化

eg:List<String> list1 = new List<String>();

List可以通過自身構造函數實例化,也可以通過數組進行實例化。

以下為List主要方法:
注:set()方法在設置插入位置以前應確保長度大于需要插入的位置,否則將拋出異常。

Set代表一類數據的無序列表。與JAVA不同的是:Set是一個類,不存在HashSet等子類。即實例化

eg:Set<String> set1 = new Set<String>();

到此,相信大家對“Apex和Database相關知識點有哪些”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

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

AI

宕昌县| 东海县| 扎赉特旗| 孝感市| 富宁县| 璧山县| 理塘县| 平顶山市| 新巴尔虎左旗| 保亭| 万宁市| 定陶县| 焉耆| 舒兰市| 白朗县| 启东市| 叙永县| 明星| 温州市| 马山县| 巴中市| 滦南县| 柳河县| 弋阳县| 铜鼓县| 大新县| 增城市| 广东省| 遂昌县| 嘉兴市| 报价| 景泰县| 西宁市| 武功县| 沙坪坝区| 弥渡县| 罗源县| 浦东新区| 沁水县| 满洲里市| 洛扎县|