1

Download ngx-admin from https://github.com/akveo/ngx-admin

2

Create a new Web Application in vs2017 through file->new->project->Select .Net Core->Select ASP.NET Core Web Application and Next->Select Empty Template(Not Angular) and OK

Now you have a .net core app and a ngx-admin app in different folders. Presume:

ngx-admin in D:\test\ngx-admin

asp.net application solution in D:\test\WebApplication1 and there's a project named WebApplication1 in D:\test\WebApplication1\WebApplication1

3

Copy all contents in D:\test\ngx-admin into D:\test\WebApplication1\WebApplication1. Yes only the contents, not the entire folder.

Don't panic. Although looks quite a mess in the .net core project folder now, you'll soon get along with it because your other modules of the .net core application don't have to stay in the same folder.

4

Open Webapplication1.sln using vs2017. Open Startup.cs and modify Configure method as below:

    public void Configure(IApplicationBuilder app, IHostingEnvironment env) {

      if (env.IsDevelopment()) {
app.UseDeveloperExceptionPage();
} app.Map("/admin", appNgxAdmin => {
appNgxAdmin.UseSpa(spa => {
spa.Options.SourcePath = "src";
if (env.IsDevelopment()) {
spa.UseAngularCliServer(npmScript: "start");
}
});
}); app.UseMvc();
}

Modify ConfigureServices method as below:

    public void ConfigureServices(IServiceCollection services) {
    services.AddMvc();
// In production, the Angular files will be served from this directory
services.AddSpaStaticFiles(configuration => {
configuration.RootPath = "dist";
});
}

Now you'll see several errors. Install Microsoft.AspNetCore.SpaServices.Extensions package through nuget. Get rid of the rest errors by adding using Microsoft.AspNetCore.SpaServices.AngularCli;

5

Open package.json, modify these 2 lines:

    "start": "ng serve --base-href=/admin/ --serve-path=/",
"build": "ng build --base-href=/admin/ --serve-path=/",

Save and right click package.json -> Restore Packges

Now try to run in vs2017 using IIS Express. Should show a blank page and if you go /admin , ngx-admin should already be working.

But there's a problem with some sockjs issue if you look at chrome dev-tool. I don't know why but could be an issue with Angular-cli earlier version which uses webpack-dev-server below v3. If you know how to solve it much appreciated if you can let me know.

Another issue is sometimes the browser complains 500 server error. Kindly let me know if you have the remedy.

It's normally not satisfying you yet. To make the whole thing working the backend controllers or alternatives are needed.

6

Notice we have services.AddMvc() and app.UseMvc() in place already which enables using controllers.

Create a Controllers folder under WebApplication1 project. Create a HomeController.cs class within it, with the content below:

using Microsoft.AspNetCore.Mvc;

namespace WebApplication1.Controllers
{
[Route("api/[controller]")]
public class HomeController : Microsoft.AspNetCore.Mvc.Controller {
[HttpGet]
public IActionResult Get() {
return Ok("Hello WebApplication1!");
}
}
}

Now run the project and visit /api/home should show Hello WebApplication1! in the browser.

The very basic procedure is done. To work on both backend and frontend in a sigle IDE is the harmony.

For more info about how to setup MVC in Asp.Net Core, here's an official link to go: https://docs.microsoft.com/en-us/aspnet/core/fundamentals/startup

The default Mvc setup only allows you to use controllers within the project. If you prefer putting your controllers in different modules and leave only the Spa app(s) here in the main project(the "host" app) Orchard Core provides utilities with full flexibility.

To use Orchard Core utilities, for the moment I'm writing this article, a myget.org source has to be configured to nuget in vs2017(by clicking the configure icon next to the package source selector): https://www.myget.org/F/orchardcore-preview/api/v3/index.json

For WebApplication1 project, install OrchardCore.Application.Mvc.Targets , OrchardCore.Module.Targets (edit: and OrchardCore.Mvc.Core) packages through myget. Don't forget to check "Including Pre-release" because the utilities are still in beta versions.

Modify Startup.cs -> Configure method:

    public void Configure(IApplicationBuilder app, IHostingEnvironment env) {

      if (env.IsDevelopment()) {
app.UseDeveloperExceptionPage();
} app.Map("/admin", appNgxAdmin => {
appNgxAdmin.UseSpa(spa => {
spa.Options.SourcePath = "src";
if (env.IsDevelopment()) {
spa.UseAngularCliServer(npmScript: "start");
}
});
});
    //app.UseMvc();
app.UseModules(); edit: later version UseOrchardCore();
}

Yes only the last line changed. Modify ConfigureService method:

    public void ConfigureServices(IServiceCollection services) {
    // services.AddMvc();
services.AddModules(); edit: later version services.AddOrchardCore().AddMvc();
// In production, the Angular files will be served from this directory
services.AddSpaStaticFiles(configuration => {
configuration.RootPath = "dist";
});
}

Just the first line is changed.

Now create a .NET Standard Class Library(.NET Standard) project named MyControllers under your WebApplication1 solution.

Install OrchardCore.Application.Mvc.Targets and OrchardCore.Module.Targets packages for this project.

Create a class named MyController.cs under MyControllers project with the content:

using Microsoft.AspNetCore.Mvc;

namespace MyControllers
{
[Route("api/[controller]")]
public class MyController : Microsoft.AspNetCore.Mvc.Controller {
[HttpGet]
public IActionResult Get() {
return Ok("Hello MyControllers!");
}
}
}

Add reference to MyControllers project in WebApplication1 project.

Run and visit /api/my you should see Hello MyControllers! in the browser.

That's it. Simple and neat. How to link ngx-admin with the api is out of scope here. Guess shouldn't be a big issue.

ngx-admin with Asp.net Core 2.0, possibly plus OrchardCore的更多相关文章

  1. asp.net core 2.0 web api基于JWT自定义策略授权

    JWT(json web token)是一种基于json的身份验证机制,流程如下: 通过登录,来获取Token,再在之后每次请求的Header中追加Authorization为Token的凭据,服务端 ...

  2. 从头编写 asp.net core 2.0 web api 基础框架 (3)

    第一部分:http://www.cnblogs.com/cgzl/p/7637250.html 第二部分:http://www.cnblogs.com/cgzl/p/7640077.html 之前我介 ...

  3. Ubuntu & Docker & Consul & Fabio & ASP.NET Core 2.0 微服务跨平台实践

    相关博文: Ubuntu 简单安装 Docker Mac OS.Ubuntu 安装及使用 Consul Consul 服务注册与服务发现 Fabio 安装和简单使用 阅读目录: Docker 运行 C ...

  4. 【转载】从头编写 asp.net core 2.0 web api 基础框架 (3)

    Github源码地址:https://github.com/solenovex/Building-asp.net-core-2-web-api-starter-template-from-scratc ...

  5. Asp.Net Core 2.0 项目实战(10) 基于cookie登录授权认证并实现前台会员、后台管理员同时登录

    1.登录的实现 登录功能实现起来有哪些常用的方式,大家首先想到的肯定是cookie或session或cookie+session,当然还有其他模式,今天主要探讨一下在Asp.net core 2.0下 ...

  6. Asp.Net Core 2.0 项目实战(11) 基于OnActionExecuting全局过滤器,页面操作权限过滤控制到按钮级

    1.权限管理 权限管理的基本定义:百度百科. 基于<Asp.Net Core 2.0 项目实战(10) 基于cookie登录授权认证并实现前台会员.后台管理员同时登录>我们做过了登录认证, ...

  7. Docker & Consul & Fabio & ASP.NET Core 2.0 微服务跨平台实践

    相关博文: Ubuntu 简单安装 Docker Mac OS.Ubuntu 安装及使用 Consul Consul 服务注册与服务发现 Fabio 安装和简单使用 阅读目录: Docker 运行 C ...

  8. Asp.Net Core 2.0 项目实战(1) NCMVC开源下载了

    Asp.Net Core 2.0 项目实战(1) NCMVC开源下载了 Asp.Net Core 2.0 项目实战(2)NCMVC一个基于Net Core2.0搭建的角色权限管理开发框架 Asp.Ne ...

  9. [Asp.net core 2.0]Ueditor 图片上传

    摘要 在项目中要用到富文本编辑器,包含上传图片,插入视频等功能.但ueditor只有.net版本,没有支持core.那么上传等接口就需要自己实现了. 一个例子 首先去百度ueditor官网下载简化版的 ...

随机推荐

  1. IDEA激活方式(亲测有效)加汉化方式

    2018/12/3 最新破解方法 将0.0.0.0 account.jetbrains.com保存到本地host文件中 然后使用注册码 K71U8DBPNE-eyJsaWNlbnNlSWQiOiJLN ...

  2. java集合的复习

    1:自定义的linkedList链表 https://blog.csdn.net/qq_33471403/article/details/80109620 2:用linked    https://b ...

  3. poj 3422 最小费用流

    如果不是从费用流区做这个题几乎不会想到用费用流 点有权值很容易想到拆点 问题是求最大sum ...  把权值取负 这样最小费用流的相反数就是最大sum 源点S汇点T k为移动次数 矩阵中的点拆成入点出 ...

  4. Dapp开发教程一 Asch Dapp Hello World

    1 基本流程 Asch有三种net,localnet,testnet,mainnet,后两种是发布到线上的,可通过公网访问. 第一种localnet是运行在本地的.只有一个节点的私链,主要是为了方便本 ...

  5. 让Delphi的TRichEdit支持新标准

    先说明, 不是直接让TRichedit支持, 而是派生出一个类支持 原理就是, IDE自带的richedit使用的是2.0版本(RICHEDIT20A/RICHEDIT20W), 这个版本虽然支持图片 ...

  6. linux信息收集

    1.系统区分debian系列:debian.ubunturedhat系列:redhat.centos 是否为docker.或者为虚拟机 分为通用模块.单独模块的信息获取 2.系统信息收集 内核(是否为 ...

  7. 2018-2019-2 20165225《网络对抗技术》Exp1 缓冲区溢出实验

    2018-2019-2 20165225<网络对抗技术>Exp1 缓冲区溢出实验 声明 虽然老师在邮箱中要求要把虚拟机名改为个人名字缩写,但是我的kali好像不是很听话...重启数次也没用 ...

  8. 迪杰斯特拉(Dijkstra)算法描述及理解

    Dijkstra算法是一种计算单源最短无负边路径问题的常用算法之一,时间复杂度为O(n2) 算法描述如下:dis[v]表示s到v的距离,pre[v]为v的前驱结点,用以输出路径,vis[v]表示该点最 ...

  9. fiddler 安装证书问题,和安装完后,浏览器无法访问问题

    安装证书问题 https://blog.csdn.net/l1336037686/article/details/78322014 浏览器无法访问问题 https://blog.csdn.net/u0 ...

  10. RN启动报错,环境相关问题

    启动RN的时候刚开始报错: The request was denied by service delegate (SBMainWorkspace) for reason: Security (&qu ...