UIの問題
Try your browser's incognito mode.Or try it in a different browser.
We could not find a record with the name 'Stunning Victorian' in the House object specified in the House.csv.
- We could not find a record with the name 'Stunning Victorian' in the House object specified in the House.csv.
- I keep getting "We could not find a record with the name 'Stunning Victorian' in the House object specified in the House.csv." when I try to verify step to complete this module "Create a Data Model Using Clicks"
Worked for me. I named all of them in the field 'house'
it seems that the verification check is looking for the 'Stunning Victorian' in 'Name' (House) field and not in 'House Name' (House_Name__c) field. I override the 'Name' (House) values and the verification check passed
検証チェックは、「House Name」(House_Name__c) フィールドではなく、「Name」(House) フィールドで「Stunning Victorian」を探しているようです。 「名前」(家) の値を上書きし、検証チェックに合格しました
モデルを作成するステップを見逃してしまいました
House Nameフィールドを作ってなかった?
I got it sorted. I traced back through my steps and i didnt House Name as the Record Field Name. I could see in the output from the Anonymous Apex function that the name field wasn't being returned properly - it was return an ID (i think, i forgot to take a screenshot) instead of the house name
整理できました。自分の手順を遡ってみたところ、レコード フィールド名として House Name が設定されていませんでした。匿名 Apex 関数の出力を見ると、名前フィールドが適切に返されていないことがわかりました。家の名前ではなく ID (スクリーンショットを撮り忘れたと思います) が返されていました。
「レコード名」フィールドを「ハウス名」にマッピングするステップを実行して、エラーを修正しました。これはトレイルヘッドモジュールに記載されていますが、最初のラウンドでは見逃していました。
I fixed the error by performing the step of mapping "Record Name" field to "House Name". This is mentioned on the trailhead module but missed during 1st round.
Once you imported the Object/data. Better to delete the object and recreate it using excel import.
I faced some additional issues while importing the same sheet. Better to use a browser session in incognito mode while retrying the steps.
ブジェクト/データをインポートしたら。オブジェクトを削除し、Excel インポートを使用して再作成することをお勧めします。
同じシートをインポートするときに、さらにいくつかの問題に直面しました。手順を再試行するときは、シークレット モードでブラウザ セッションを使用することをお勧めします。
Create a custom object from a spreadsheet showing an error like It’s better in Lightning To create objects from spreadsheets, you must be a Lightning Experience user. Learn more about enabling Lightning Experience.
【未解決】review the following errors see your server log for more information
yntaxError Unexpected Token
環境が違った
Error: Line: 1, Column: 27 Error: Method does not exist or incorrect signature: void getRecords() from the type HouseService
Check if the deployment is successful in the source organization.
5.Right-click HouseService.cls and select SFDX: Deploy Source to Org. You see a confirmation message that the Apex class successfully deployed to the org. Deploying your code also compiles it on the server.
CSV the menu defaults to select items from a google drive
I'm doing the project using the Google Chrome browser, my project also gave this error. I resolved the problem by switching to Microsoft Edge and redoing the process, I hope to help someone with this information.
Google Chromeブラウザを使用してプロジェクトを実行していますが、私のプロジェクトでもこのエラーが発生しました。 Microsoft Edge に切り替えてプロセスをやり直すことで問題が解決しました。この情報が誰かのお役に立てれば幸いです。
house objectのタブが表示されない
オブジェクトを作成できてなかった...
Error: Method does not exist or incorrect signature: void getRecords() from the type HouseService
Check if the deployment is successful in the source organization.
5.Right-click HouseService.cls and select SFDX: Deploy Source to Org. You see a confirmation message that the Apex class successfully deployed to the org. Deploying your code also compiles it on the server.
ソース組織での展開が成功したかどうかを確認します。
5.HouseService.cls を右クリックし、「SFDX: ソースを組織にデプロイ」を選択します。 Apex クラスが組織に正常にデプロイされたことを示す確認メッセージが表示されます。コードをデプロイすると、サーバー上でコードもコンパイルされます。
This is for the "Platform Developer Beginner -> Get Started with Salesforce Development -> Write Business Logic in Apex" module.
public with sharing class HouseService {
@AuraEnabled(cacheable=true)
public static List<House__c> getRecords() {
try {
// Create a list of House records from a SOQL query
List<House__c> lstHouses = [
SELECT
Id,
Name,
Address__c,
State__c,
City__c,
Zip__c
FROM House__c
WITH SECURITY_ENFORCED
ORDER BY CreatedDate
LIMIT 10
];
return lstHouses;
}
// Code to handle exception
catch (Exception e) {
throw new AuraHandledException(e.getMessage());
}
}
}