我有一个不幸的事件,导入/导出扩展,吃了我的Category_Path表数据。现在,我的网站的前端或后端都没有显示任何类别。 下面的代码是否可以在OpenCart 2.1.0.1中重新创建我的category_path表? 如果是这样,我该如何实施呢?
public HttpResponseMessage GetXx(string type, int id)
{
switch(type)
{
case "xx":
Type1 obj1 = <your logic>;
return Request.CreateResponse(HttpStatusCode.OK, obj1);
case "yy":
....
}