mirror of
https://github.com/wu736139669/vczero.github.io.git
synced 2026-08-05 06:23:38 +00:00
10 lines
236 B
JavaScript
10 lines
236 B
JavaScript
|
|
/*初始化的结果*/
|
|
app.controller('musicListController', function($rootScope, musicList){
|
|
|
|
if(!$rootScope.keywordsObj.music){
|
|
$rootScope.keywordsObj.music = '刘德华';
|
|
}
|
|
musicList.getData($rootScope.keywordsObj.music);
|
|
});
|