设置后台接口服务的basicUrl
修改 src -> environments 文件夹下
生产环境和开发环境的ts文件中的 SERVER_URL
export const environment = {
SERVER_URL: `http://服务器地址`,
....
};
ng-alain的用户认证默认发给后端的认信息的key值是token,如过要更改可以在src -> app -> delon.module.ts中修改
export function fnDelonAuthConfig(): DelonAuthConfig {
return Object.assign(new DelonAuthConfig(), <DelonAuthConfig>{
login_url: '/passport/login',
token_send_key: 'authKey'
});
}
这样在调用接口时,传给后端的认证信息字段就是(authKey:字符串。。)
详细信息可看官网https://ng-alain.com/auth/getting-started/zh,有更多的配置字段可根据需求更改
网友评论