码迷,mamicode.com
首页 > 其他好文 > 详细

ABP初始化

时间:2017-10-30 18:17:50      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:bpm   audit   res   enable   turn   mvc   app   mon   code   

默认认为你手中已经有abp-zero项目,当前4.6.0

angularJS切换到jquery

运行项目,初始化是跳转到~/App/common/views/layout/layout.cshtml,使用的angularJS

想使用jquery版本,需要修改 Web\Controllers\ApplicationController.cs,当然我们新添加的功能也是放到 Areas/Mpa/

ps:Mpa 在这里是多页面的意思

namespace MyCompanyName.AbpZeroTemplate.Web.Controllers
{
    [AbpMvcAuthorize]
    public class ApplicationController : AbpZeroTemplateControllerBase
    {
        [DisableAuditing]
        public ActionResult Index()
        {
            /* Enable next line to redirect to Multi-Page Application */
            return RedirectToAction("Index", "Home", new { area = "Mpa" });

            //return View("~/App/common/views/layout/layout.cshtml"); //Layout of the angular application.
        }
    }
}

切换多租户

修改 Core\AbpZeroTemplateConsts.cs

    public class AbpZeroTemplateConsts
    {
        public const string LocalizationSourceName = "AbpZeroTemplate";

        /// <summary>
        /// 是否启用多租户
        /// </summary>
        public const bool MultiTenancyEnabled = true;
    }

 

ABP初始化

标签:bpm   audit   res   enable   turn   mvc   app   mon   code   

原文地址:http://www.cnblogs.com/Jerrycjc/p/7755277.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!