2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

LWC関連(トレイルヘッド含む)のまとめ

Last updated at Posted at 2022-02-22

まとめページに戻る

少し関連情報を整理します。

操作方法等の覚え

PATH 変数を確認すると、インストール先が判断できると思います。そこにアンインストール用のバッチファイルとかはないですか?

https://www.reddit.com/r/SalesforceDeveloper/comments/16dn1v4/cant_uninstall_sfdx_windows/

JAVA_HOMEなどの環境変数は正しく設定できていますか?

I had the same problem, which also wasn’t resolved by reinstalling. In my case, I needed to install the Java JDK and the Salesforce CLI using the installer from the official website, so that the environment variables were correctly configured. After this, it worked normally

https://salesforce.stackexchange.com/questions/411738/vs-code-salesforce-extensions-not-activating

活用例

その他

CSS サンプル

インストール

CLIのバージョンダウンで解決

I was able to resolve this issue by overriding the Salesforce CLI apiversion back to 54.0 when running the package version create command.

この問題は、パッケージ バージョン作成コマンドの実行時に Salesforce CLI の API バージョンをオーバーライドして 54.0 に戻すことで解決できました。

deployが遅い

I gave up and just created a new sandbox. Deploying a class file is taking less than 5 seconds in the new sandbox which is tolerable.

諦めて新しいサンドボックスを作成しました。新しいサンドボックスでは、クラス ファイルのデプロイにかかる時間は 5 秒未満ですが、許容できる範囲です

Json でのエラー

NavigationMixin.Navigate

レポートのフォルダーへの遷移について回答があります。ダッシュボードでも参考になるかもしれません。

https://salesforce.stackexchange.com/questions/373948/how-to-navigate-to-particular-folder-of-report-with-navigation-button-in-lwc

便利な sfdxコマンド

force:source:retrieve メタデータを取得する。

ターミナルでメールテンプレートをリトリーブするときは

sfdx force:source:retrieve -u staging -m "EmailTemplate:(フォルダーのDeveloperName)/(テンプレートのDeveloperName)"

のコマンドで取得できます。

ただフォルダーのDeveloperNameが不明の際(未公開メールテンプレート)、どのようなコマンドで取得できるのでしょうか?

Folder.DeveloperNameが空だったときのリトリーブコマンドはsfdx force:source:retrieve -u staging -m "EmailTemplate:(フォルダーのDeveloperName)/(テンプレートのDeveloperName)"

からどこか変化するのかという意図での質問でした。

Folder.DeveloperNameがあるものは上記のコマンドでメールテンプレートを取得できました。

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?