0

我正在尝试使用 nopCommerce 返回 2 个列表,这两个列表都是只读的,我正在寻找最简单的方法,因为我正在编写一个 Metro 应用程序并且我真的不想花数周时间学习 MVC 。第一个列表是来自基础 nopCommerce 平台的类别列表,第二个列表是产品列表。两个列表都需要作为 JSON 返回给调用客户端。

我有两个问题:

  1. 有没有一种方法可以在不调用自定义代码的情况下获取此列表?
  2. 我使用以下代码编写了一个插件

    using System.Collections;
    using System.Collections.Generic;
    using System.Web.Mvc;
    using Nop.Core;
    using Nop.Core.Domain.Catalog;
    using Nop.Services.Catalog;
    using Nop.Services.Customers;
    using Nop.Core.Plugins;
    
    namespace Nop.Plugin.Other.ONWWW.Controllers
    {
        public class ONWWWController : Controller
        {
            public  ICategoryService _categoryService;
    
            public ONWWWController(ICategoryService categoryService)
            {
                this._categoryService = categoryService;
            }
    
            public ActionResult Index()
            {
                return Json(_categoryService.GetAllCategories(), JsonRequestBehavior.AllowGet);
            }
    
        }
    
    }
    

    为什么,当我运行代码时,出现以下错误?

    没有为此对象定义无参数构造函数。

4

1 回答 1

1

问题 1:您最好的选择是原始源代码中的Nop.Plugin.Misc.WebServices插件。

问题 2:您是否看到您拥有的唯一构造函数是

public ONWWWController(ICategoryService categoryService)

哪个必须接受参数?换句话说,您没有正确注册依赖项。尝试查看任何默认插件中的DependencyRegistrar.cs文件之一。例如,Nop.Plugin.Misc.MailChimp 插件有一个可以参考DependencyRegistrar.cs 。

:)

于 2012-10-09T19:24:19.433 回答