You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
755 B
28 lines
755 B
2 months ago
|
|
||
|
import 'package:dio/dio.dart';
|
||
|
import 'package:music_player_miao/models/universal_bean.dart';
|
||
|
|
||
|
const String _CollectionsURL = 'http://8.210.250.29:10010/collections';
|
||
|
|
||
|
class CollectionsApiMusic {
|
||
|
final Dio dio = Dio();
|
||
|
|
||
|
///收藏
|
||
|
Future<UniversalBean> collectionsMusic({
|
||
|
required int musicId,
|
||
|
required String Authorization,
|
||
|
}) async {
|
||
|
Response response = await dio.post(_CollectionsURL,
|
||
|
data: {
|
||
|
"Authorization": Authorization,
|
||
|
},
|
||
|
queryParameters: {'musicId': musicId},
|
||
|
options: Options(headers: {
|
||
|
'Authorization': Authorization,
|
||
|
'Content-Type': 'application/json;charset=UTF-8'
|
||
|
}));
|
||
|
print(response.data);
|
||
|
return UniversalBean.formMap(response.data);
|
||
|
}
|
||
|
}
|