We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
■プラグインでやること ・@link ProfileリソースのonGetの引数には$idがある場合
@Link(href="<ctrl+space>") ← 候補の一覧から/profileを選択 ↓ @Link(href="/profile<ctrl+space>") ← 候補の一覧からidを選択 or @Link(href="/profile{?<ctrl+space>}") ← 候補の一覧からidを選択 ↓ @Link(href="/profile{?id<caret>}")
・@Emebed News/SportsリソースのonGetの引数にはarticle_idを持ち、アノテーションがつけられたメソッドの引数には$idがある場合
@Embed(rel="sports", src="<ctrl+space>") ← 候補の一覧から/news/sportsを選択 ↓ @Embed(rel="sports", src="/news/sports<ctrl+space>") ← 候補の一覧からarticle_idを選択 ↓ @Embed(rel="sports", src="/news/sports?article_id=<ctrl+space>") ← 候補の一覧から$idを選択 ↓ @Embed(rel="sports", src="/news/sports?article_id={id}")
WebsiteリソースのonGetとアノテーションがつけられたメソッドの引数が同じidだけの場合
@Embed(rel="website", src="<ctrl+space>") ← 候補の一覧から/websiteを選択 ↓ @Embed(rel="website", src="/website<ctrl+space>") ← 候補の一覧からidを選択 or @Embed(rel="website", src="/website{?<ctrl+space>}") ← 候補の一覧からidを選択 ↓ @Embed(rel="website", src="/website{?id}")
The text was updated successfully, but these errors were encountered:
ryoryo
No branches or pull requests
■プラグインでやること
・@link
ProfileリソースのonGetの引数には$idがある場合
・@Emebed
News/SportsリソースのonGetの引数にはarticle_idを持ち、アノテーションがつけられたメソッドの引数には$idがある場合
WebsiteリソースのonGetとアノテーションがつけられたメソッドの引数が同じidだけの場合
The text was updated successfully, but these errors were encountered: