为了账号安全,请及时绑定邮箱和手机立即绑定

transferred with MIME type text/html

transferred with MIME type text/html

撒科打诨 2018-12-14 15:06:39
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已经加载了,但是控制台有一个小提醒,样式没有渲染出来。有人知道为什么吗?
查看完整描述

1 回答

?
婷婷同学_

TA贡献1844条经验 获得超8个赞

没有正确设置CSS文件的头文件,请求类型为text/html,应该为text/css,看看你的请求header的Content-Type是不是这个吧,text/css。

https://img1.sycdn.imooc.com//5c3eed170001a5d503530066.jpg

查看完整回答
反对 回复 2019-01-16
  • 1 回答
  • 0 关注
  • 1012 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信