18

MVC4 でバンドルと縮小のサポートを実装し、Bootstrap .less ファイルを自動的にコンパイルできるように設定しています。BundleConfig.cs ファイルに次のコードがあります。

public class BundleConfig
{
    public static void RegisterBundles(BundleCollection bundles)
    {
        // base bundles that come with MVC 4

        var bootstrapBundle = new Bundle("~/bundles/bootstrap").Include("~/Content/less/bootstrap.less");
        bootstrapBundle.Transforms.Add(new TwitterBootstrapLessTransform());
        bootstrapBundle.Transforms.Add(new CssMinify());
        bundles.Add(bootstrapBundle);
    }
}

TwitterBootsrapLessTransform は次のとおりです (サブ .less ファイルを dotLess にインポートする必要があるため、必要以上に複雑です)。

public class TwitterBootstrapLessTransform : IBundleTransform
{
    public static string BundlePath { get; private set; }

    public void Process(BundleContext context, BundleResponse response)
    {
        setBasePath(context);

        var config = new DotlessConfiguration(DotlessConfiguration.GetDefault());
        config.LessSource = typeof(TwitterBootstrapLessMinifyBundleFileReader);

        response.Content = Less.Parse(response.Content, config);
        response.ContentType = "text/css";
    }

    private void setBasePath(BundleContext context)
    {
        BundlePath = context.HttpContext.Server.MapPath("~/Content/less" + "/imports" + "/");
    }
}

public class TwitterBootstrapLessMinifyBundleFileReader : IFileReader
{
    public IPathResolver PathResolver { get; set; }
    private string basePath;

    public TwitterBootstrapLessMinifyBundleFileReader(): this(new RelativePathResolver())
    {
    }

    public TwitterBootstrapLessMinifyBundleFileReader(IPathResolver pathResolver)
    {
        PathResolver = pathResolver;
        basePath = TwitterBootstrapLessTransform.BundlePath;
    }

    public bool DoesFileExist(string fileName)
    {
        fileName = PathResolver.GetFullPath(basePath + fileName);

        return File.Exists(fileName);
    }

    public byte[] GetBinaryFileContents(string fileName)
    {
        throw new System.NotImplementedException();
    }

    public string GetFileContents(string fileName)
    {
        fileName = PathResolver.GetFullPath(basePath + fileName);

        return File.ReadAllText(fileName);
    }
}

私のベース _Layout.cshtml ページで、これを実行して css ファイルをレンダリングしようとしました

@Styles.Render("~/bundles/bootstrap");

mvcチュートリアルで提案されているように、クライアントブラウザが最終的に要求するファイルは

http://localhost:53729/Content/less/bootstrap.less

これはエラーを引き起こします。次のリンクをベースレイアウトページごとに配置すると、期待どおりに機能します。

<link href="~/bundles/bootstrap" rel="stylesheet" type="text/css" />

@Styles.Render() がデバッグ モードで同じように動作しないのはなぜですか? リリースモードで動作します。デバッグでバンドルと縮小を望まないことは理解できますが、このバンドルを常に同じように機能させるにはどうすればよいですか?

4

3 に答える 3

31

したがって、基本的に の場合debug="true"、Script/Style Render メソッドは最適化がオフであると想定します。つまり、バンドルも縮小も行われず、変換を呼び出さないことを意味します。代わりに、バンドルの生のコンテンツへのリンクをレンダリングするだけです(あなたの場合はboostrap.lessです)。

を設定することで、この動作をオーバーライドし、常に最適化を実行できますBundleTable.EnableOptimizations = true。これにより、render メソッドは常にバンドル/縮小を行うようになります。

于 2012-06-29T22:46:17.493 に答える
10

私がやったことは、_Layout.cshtml にデバッグ if ステートメントを入れて、何があってもバンドルがレンダリングされるようにすることでした。私は解決策としてそれについて夢中ではありませんが、今のところ機能しています。

@if (Context.IsDebuggingEnabled)
{
    <link href="~/bundles/bootstrap" rel="stylesheet" type="text/css" />
}
else
{
    @Styles.Render("~/bundles/bootstrap")
}
于 2012-06-26T14:46:40.480 に答える
4

dotless に .less ファイルを提供させることでこれを回避します

web.config:

   <handlers>
    <add name="dotless" path="*.less" verb="GET" type="dotless.Core.LessCssHttpHandler,dotless.Core" resourceType="File" preCondition="" />
    </handlers>
于 2012-08-23T14:55:35.963 に答える