我在我的應用程序中使用引導程序巡視。我想在引導程序巡視步驟的'標題'中顯示登錄用戶名。我的用戶名存儲在會話對象中。如何在標題中使用會話對象?如何在引導遊覽中的標題選項中使用會話對象?
JS代碼:
// Instance the tour
var tour = new Tour({
steps: [
{
element: "#my-element",
title: "Welcome to the tour" +'@Session["User"]',
content: "Content of my step"
},
{
element: "#my-other-element",
title: "Title of my step",
content: "Content of my step"
}
]});
// Initialize the tour
tour.init();
// Start the tour
tour.start();
哪個後端編碼您使用的? –
我正在使用Asp.net Mvc5.im在控制器中存儲會話對象值,並且我在剃刀視圖中寫入了上述js – user3479588