開発者ツールのConsoleタブで以下のコマンドを実行する
console.log(Backlog.resource['loginUser.id']);
ログインユーザーの情報をまとめて取る場合
Object.fromEntries(
Object.entries(Backlog.resource)
.filter(([k]) => k.startsWith("loginUser.")
)
)
Go to list of users who liked
開発者ツールのConsoleタブで以下のコマンドを実行する
console.log(Backlog.resource['loginUser.id']);
ログインユーザーの情報をまとめて取る場合
Object.fromEntries(
Object.entries(Backlog.resource)
.filter(([k]) => k.startsWith("loginUser.")
)
)
Register as a new user and use Qiita more conveniently
Go to list of users who liked