transferred with MIME type text/html

https://img2.mukewang.com/5c3eecfb0001a4a408000255.jpg

https://img1.mukewang.com/5c3eed000001365c08000398.jpg

require.config({

    baseUrl: '',

    paths: {

        'angular': 'lib/angular',

        'router': 'lib/ui-router'

    },

    shim: {

        'angular': {

            exports: 'angular'

        }

    },

    map: {

      '*': {

        'css': 'lib/require-css'

      }

    },

    waitSeconds: 0

});


require(['angular','router', 'css!../css/index.css'], function (angular, router) {


    var app = angular.module('beta', ['ng', 'ui.router']);


    app.controller('betaCtrl', ['$scope', function ($scope) {

        $scope.name = 'lily';

        console.log($scope.name);

    }]);


    app.config(function ($urlRouterProvider, $stateProvider) {

        $urlRouterProvider.otherwise('/home');

        $stateProvider.state('home', {

            url: '/home',

            templateUrl: 'view/home/home.html'

        });

    });


    angular.element(document).ready(function () {

        angular.bootstrap(window.document, ['beta']);

    });

});

index.css已经加载了,但是控制台有一个小提醒,样式没有渲染出来。
有人知道为什么吗?

撒科打诨
浏览 1013回答 1
1回答

婷婷同学_

没有正确设置CSS文件的头文件,请求类型为text/html,应该为text/css,看看你的请求header的Content-Type是不是这个吧,text/css。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript