パーシャルビューである埋め込みリソースを正常に取得するカスタムVirtualFileおよびVirtualPathProvider実装を作成しました。
しかし、それらをレンダリングしようとすると、次のエラーが発生します。
The view at '~/Succeed.Web/Succeed.Web.Controls.SImporter._SImporter.cshtml' must derive from WebViewPage, or WebViewPage<TModel>.
通常のビュー内で部分ビューをレンダリングすると、次のようになります。
Html.RenderPartial("~/Succeed.Web/Succeed.Web.Controls.SImporter._SImporter.cshtml");
これが部分的なビューではないと思わせる原因は何ですか?
編集:私は、そのコンポーネントを機能させるための解決策を探してこれに遭遇した人のために、仮想ファイルと仮想ファイルプロバイダーの実装の両方にコードを投稿しました。この質問は、質問のタイトルに基づく人にも役立ちます。
参照用のVirtualFile実装です。
public class SVirtualFile : VirtualFile
{
private string m_path;
public SVirtualFile(string virtualPath)
: base(virtualPath)
{
m_path = VirtualPathUtility.ToAppRelative(virtualPath);
}
public override System.IO.Stream Open()
{
var parts = m_path.Split('/');
var assemblyName = parts[1];
var resourceName = parts[2];
assemblyName = Path.Combine(HttpRuntime.BinDirectory, assemblyName);
var Assembly = System.Reflection.Assembly.LoadFile(assemblyName + ".dll");
if (Assembly != null)
{
return Assembly.GetManifestResourceStream(resourceName);
}
return null;
}
}
VirtualPathProvider:
public class SVirtualPathProvider : VirtualPathProvider
{
public SVirtualPathProvider()
{
}
private bool IsEmbeddedResourcePath(string virtualPath)
{
var checkPath = VirtualPathUtility.ToAppRelative(virtualPath);
return checkPath.StartsWith("~/Succeed.Web/", StringComparison.InvariantCultureIgnoreCase);
}
public override bool FileExists(string virtualPath)
{
return IsEmbeddedResourcePath(virtualPath) || base.FileExists(virtualPath);
}
public override VirtualFile GetFile(string virtualPath)
{
if (IsEmbeddedResourcePath(virtualPath))
{
return new SVirtualFile(virtualPath);
}
else
{
return base.GetFile(virtualPath);
}
}
public override CacheDependency GetCacheDependency( string virtualPath, IEnumerable virtualPathDependencies, DateTime utcStart)
{
if (IsEmbeddedResourcePath(virtualPath))
{
return null;
}
else
{
return base.GetCacheDependency(virtualPath, virtualPathDependencies, utcStart);
}
}
}
そしてもちろん、Application_Start()イベントでプロジェクトのGlobal.asaxファイルにこの新しいプロバイダーを登録することを忘れないでください
System.Web.Hosting.HostingEnvironment.RegisterVirtualPathProvider(new SVirtualPathProvider());
現在、不明な場所からビューを提供しているため、~/Views/web.config
ファイルは、かみそりビューの基本クラスを適用して示します(<pages pageBaseType="System.Web.Mvc.WebViewPage">
)。したがって、各埋め込みビューの上部に@inheritsディレクティブを追加して、基本クラスを示すことができます。
@inherits System.Web.Mvc.WebViewPage
@model ...
私はOPの回答をベースとして使用しましたが、少し拡張し、質問への回答をソリューションに組み込んだ。
これは、ここSOでややよく聞かれる質問のようですが、完全な答えは見ていなかったので、実際の解決策を共有すると役立つと思いました。
リソースをデータベースからロードし、デフォルトのキャッシュ(System.Web.Caching.Cache)にキャッシュしました。
私がやったことは、リソースの検索に使用しているKEYにカスタムのCacheDependencyを作成することでした。そうすれば、他のコードが(編集などで)そのキャッシュを無効にするたびに、そのキーへのキャッシュの依存関係が削除され、VirtualPathProviderがそのキャッシュを無効にして、VirtualFileが再ロードされます。
また、継承ステートメントを自動的に付加するようにコードを変更し、データベースリソースに格納する必要がないようにしました。また、この「ビュー」は通常のチャネルを介して読み込まれないため、いくつかのデフォルトのusingステートメントを自動的に付加します。デフォルトでweb.configまたはviewstartに含まれているものは使用できません。
CustomVirtualFile:
public class CustomVirtualFile : VirtualFile
{
private readonly string virtualPath;
public CustomVirtualFile(string virtualPath)
: base(virtualPath)
{
this.virtualPath = VirtualPathUtility.ToAppRelative(virtualPath);
}
private static string LoadResource(string resourceKey)
{
// Load from your database respository or whatever here...
// Note that the caching is disabled for this content in the virtual path
// provider, so you must cache this yourself in your repository.
// My implementation using my custom service locator that sits on top of
// Ninject
var contentRepository = FrameworkHelper.Resolve<IContentRepository>();
var resource = contentRepository.GetContent(resourceKey);
if (String.IsNullOrWhiteSpace(resource))
{
resource = String.Empty;
}
return resource;
}
public override Stream Open()
{
// Always in format: "~/CMS/{0}.cshtml"
var key = virtualPath.Replace("~/CMS/", "").Replace(".cshtml", "");
var resource = LoadResource(key);
// this automatically appends the inherit and default using statements
// ... add any others here you like or append them to your resource.
resource = String.Format("{0}{1}", "@inherits System.Web.Mvc.WebViewPage<dynamic>\r\n" +
"@using System.Web.Mvc\r\n" +
"@using System.Web.Mvc.Html\r\n", resource);
return resource.ToStream();
}
}
CustomVirtualPathProvider:
public class CustomVirtualPathProvider : VirtualPathProvider
{
private static bool IsCustomContentPath(string virtualPath)
{
var checkPath = VirtualPathUtility.ToAppRelative(virtualPath);
return checkPath.StartsWith("~/CMS/", StringComparison.InvariantCultureIgnoreCase);
}
public override bool FileExists(string virtualPath)
{
return IsCustomContentPath(virtualPath) || base.FileExists(virtualPath);
}
public override VirtualFile GetFile(string virtualPath)
{
return IsCustomContentPath(virtualPath) ? new CustomVirtualFile(virtualPath) : base.GetFile(virtualPath);
}
public override CacheDependency GetCacheDependency(string virtualPath, IEnumerable virtualPathDependencies, DateTime utcStart)
{
if (IsCustomContentPath(virtualPath))
{
var key = VirtualPathUtility.ToAppRelative(virtualPath);
key = key.Replace("~/CMS/", "").Replace(".cshtml", "");
var cacheKey = String.Format(ContentRepository.ContentCacheKeyFormat, key);
var dependencyKey = new String[1];
dependencyKey[0] = string.Format(cacheKey);
return new CacheDependency(null, dependencyKey);
}
return Previous.GetCacheDependency(virtualPath, virtualPathDependencies, utcStart);
}
public override string GetFileHash(string virtualPath, IEnumerable virtualPathDependencies)
{
if (IsCustomContentPath(virtualPath))
{
return virtualPath;
}
return base.GetFileHash(virtualPath, virtualPathDependencies);
}
}
お役に立てれば!
OPの情報とDarin Dimitrovの回答に大きく依存して、プロジェクト間でMVCコンポーネントを共有するための 単純なプロトタイプ を作成しました。これらは非常に役立ちましたが、@ modelで共有ビューを使用するなど、プロトタイプで対処されるいくつかの追加の障壁に遭遇しました。