@{ Html.RenderPartial(MVC.Shared.Views.Partials.CameraTagVideoPlayer, new CameraTagVideoPlayerViewModel("applicationVideo", "xxx")); }
"xxx"を特定のノックアウトデータバインドに置き換えたいとします。例えば、htmlの文字列を置き換える方法renderPartial?
<span data-bind="text: application.applicationKey"></span>
は私に人のapplicationKeyを与える
。私はこのキーをRenderPartialの中に入れてビデオを再生したいと思います。これを行う方法はありますか?
EDIT:
public static class Partials
{
public readonly static string _CurvedSelector = "~/Views/Shared/Partials/_CurvedSelector.cshtml";
public readonly static string SelectMonthOptions = "~/Views/Shared/Partials/SelectMonthOptions.cshtml";
public readonly static string SelectStateOptions = "~/Views/Shared/Partials/SelectStateOptions.cshtml";
public readonly static string SelectYearOptions = "~/Views/Shared/Partials/SelectYearOptions.cshtml";
public readonly static string ToggleButton = "~/Views/Shared/Partials/ToggleButton.cshtml";
public readonly static string CameraTagVideoPlayer = "~/Views/Shared/Partials/CameraTagVideoPlayer.cshtml";
public readonly static string CreditCardFormFields = "~/Views/Shared/Partials/CreditCardFormFields.cshtml";
public readonly static string CreditCardJavascript = "~/Views/Shared/Partials/CreditCardJavascript.cshtml";
public readonly static string AntiBotFormFields = "~/Views/Shared/Partials/AntiBotFormFields.cshtml";
public readonly static string ExitModal = "~/Views/Shared/Partials/ExitModal.cshtml";
}
cameratagvideoplayer.html:
@model CameraTagVideoPlayerViewModel
@{
// CameraTag video security
long expiration = Utilities.ToUnixTimestamp(DateTime.UtcNow.AddMinutes(30)); // can be no more than 1 hour
string signature = Utilities.CreateTokenHmacSha1(expiration.ToString(), AppSettings.Current.CameraTagRestApiKey);
}
<player id="@Model.Id"
data-uuid='@(Model.VideoUuid)'
data-options='{"width":"100%","height":"100%", "aspectratio":"4:3", "displaytitle":"false","displaydescription":"false"}'
data-signature="@signature" data-signature-expiration="@expiration"></player>
'MVC.Shared.Views.Partials.CameraTagVideoPlayer'の部分ビューを表示できますか? –
@JoseLuisちょうど追加されました!それは役に立ちますか? – Dukakus17