From 569ccb528a25e7cf9e28c01d4b2cb877f32b313c Mon Sep 17 00:00:00 2001 From: maliming Date: Thu, 15 Nov 2018 18:56:04 +0800 Subject: [PATCH] Update Part-II.md --- docs/zh-Hans/Tutorials/AspNetCore-Mvc/Part-II.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/zh-Hans/Tutorials/AspNetCore-Mvc/Part-II.md b/docs/zh-Hans/Tutorials/AspNetCore-Mvc/Part-II.md index ac8b24ddcd..3e355b5c94 100644 --- a/docs/zh-Hans/Tutorials/AspNetCore-Mvc/Part-II.md +++ b/docs/zh-Hans/Tutorials/AspNetCore-Mvc/Part-II.md @@ -109,7 +109,7 @@ namespace Acme.BookStore.Pages.Books ![bookstore-new-book-button](images/bookstore-new-book-button.png) -打开 `wwwroot/pages/books/index.js` 在datatable配置代码后面添加如下代码: +打开 `Pages/books/index.js` 在datatable配置代码后面添加如下代码: ````js var createModal = new abp.ModalManager(abp.appPath + 'Books/CreateModal'); @@ -268,7 +268,7 @@ namespace Acme.BookStore * 只是为"Actions"增加了一个 `th` 标签. -打开 `wwwroot/pages/books/index.js` 并用以下内容进行替换: +打开 `Pages/books/index.js` 并用以下内容进行替换: ````js $(function () { @@ -327,7 +327,7 @@ $(function () { ### 删除一个已有的Book实体 -打开 `wwwroot/pages/books/index.js` 文件,在 `rowAction` `items` 下新增一项: +打开 `Pages/books/index.js` 文件,在 `rowAction` `items` 下新增一项: ````js { @@ -418,4 +418,4 @@ $(function () { ### 下一章 -查看本教程的 [下一章](Part-III.md) . \ No newline at end of file +查看本教程的 [下一章](Part-III.md) .