我用的是Angular 8。
我正在尝试覆盖以下方法函数:
/**
* This property allows you to override the method that is used to open the login url,
* allowing a way for implementations to specify their own method of routing to new
* urls.
*/
public openUri?: ((uri: string) => void) = uri => {
location.href = uri;
}
在www.example.com中定义https://manfredsteyer.github.io/angular-oauth2-oidc/docs/classes/AuthConfig.html#source
我该怎么撤销它?
2条答案
按热度按时间oxcyiej71#
创建自定义AuthConfig
并使用这个类
ltskdhd12#
你可以这样做: