点击上架或者下架, 返回操作失败
来源:8-11 商品列表展示之前端开发
姜岑
2020-02-03
老师你好 : 前面的访问都没有问题, 这里点击上架或者下架后, 出现确定么? 再点击确定之后, 出现的是操作失败.
在 chrome 上对 js 代码进行 debug, 断点如下 :
直接从 97 行的断点跳出到 changeItemStatus 外面了, 并没有接着运行, 麻烦老师看一下可能的原因.
写回答
4回答
-
翔仔
2020-03-12
同学好,直接贴代码没法精确定位呢,代码有时候并不代表全部,而且我们的执行环境不通,主要还是需要一步步去调试,然后根据你之前的调试结果,说multipart这一步不认,所以我判断是jar的问题,你重新引入试试,全部复制粘贴,update maven project试试
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.imooc</groupId> <artifactId>o2o</artifactId> <packaging>war</packaging> <version>0.0.1-SNAPSHOT</version> <name>o2o Maven Webapp</name> <url>http://maven.apache.org</url> <properties> <spring.version>5.1.8.RELEASE</spring.version> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-classic --> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.2.3</version> </dependency> <!-- Spring --> <!-- 1)包含Spring 框架基本的核心工具类。Spring 其它组件要都要使用到这个包里的类,是其它组件的基本核心 --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>${spring.version}</version> </dependency> <!-- 2)这个jar 文件是所有应用都要用到的,它包含访问配置文件、创建和管理bean 以及进行Inversion of Control / Dependency Injection(IoC/DI)操作相关的所有类。如果应用只需基本的IoC/DI 支持,引入spring-core.jar 及spring-beans.jar 文件就可以了。 --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>${spring.version}</version> </dependency> <!-- 3)这个jar 文件为Spring 核心提供了大量扩展。可以找到使用Spring ApplicationContext特性时所需的全部类,JDNI 所需的全部类,instrumentation组件以及校验Validation 方面的相关类。 --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${spring.version}</version> </dependency> <!-- 4) 这个jar 文件包含对Spring 对JDBC 数据访问进行封装的所有类。 --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>${spring.version}</version> </dependency> <!-- 5) 为JDBC、Hibernate、JDO、JPA等提供的一致的声明式和编程式事务管理。 --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <version>${spring.version}</version> </dependency> <!-- 6)Spring web 包含Web应用开发时,用到Spring框架时所需的核心类,包括自动载入WebApplicationContext特性的类、Struts与JSF集成类、文件上传的支持类、Filter类和大量工具辅助类。 --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>${spring.version}</version> </dependency> <!-- 7)包含SpringMVC框架相关的所有类。 --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>${spring.version}</version> </dependency> <!-- 8)Spring test 对JUNIT等测试框架的简单封装 --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${spring.version}</version> <scope>test</scope> </dependency> <!-- Servlet web --> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>4.0.1</version> </dependency> <!-- json解析 --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.9.9</version> </dependency> <!-- Map工具类 对标准java Collection的扩展 spring-core.jar需commons-collections.jar --> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.2.2</version> </dependency> <!-- DAO: MyBatis --> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.1</version> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis-spring</artifactId> <version>2.0.1</version> </dependency> <!-- 数据库 --> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>8.0.16</version> </dependency> <!-- https://mvnrepository.com/artifact/com.mchange/c3p0 --> <dependency> <groupId>com.mchange</groupId> <artifactId>c3p0</artifactId> <version>0.9.5.4</version> </dependency> <!-- 图片处理 --> <!-- https://mvnrepository.com/artifact/net.coobird/thumbnailator --> <dependency> <groupId>net.coobird</groupId> <artifactId>thumbnailator</artifactId> <version>0.4.8</version> </dependency> <!-- https://mvnrepository.com/artifact/com.github.penggle/kaptcha --> <dependency> <groupId>com.github.penggle</groupId> <artifactId>kaptcha</artifactId> <version>2.3.2</version> </dependency> <dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <version>1.3.2</version> </dependency> <!-- redis客户端:Jedis --> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> <version>2.9.0</version> </dependency> </dependencies> <build> <finalName>o2o</finalName> <plugins> <plugin> <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.1</version> <configuration> <source>1.8</source> <target>1.8</target> <encoding>UTF8</encoding> </configuration> </plugin> </plugins> </build> </project>
00 -
姜岑
提问者
2020-03-12
@Override @Transactional // 1.若缩略图参数有值, 则处理缩略图 // 若原先存在缩略图则先删除再添加新图, 之后获取缩略图相对路径并赋值给 product // 2。若商品详情图列表参数有值, 对商品详情图片列表进行同样的操作 // 3。将 tb_product_img 下面的该商品原先的商品详情图记录全部清除 : 这里先做物理图片的删除,再做数据库信息的删除 // 4。 更新 tb_product_img 以及 tb_product 的信息 public ProductExecution modifyProduct(Product product, ImageHolder thumbnail, List<ImageHolder> productImgHolderList) throws ProductOperationException { // 空值判断 if (product != null && product.getShop() != null && product.getShop().getShopId() != null) { // 给商品设置上默认属性 product.setLastEditTime(new Date()); // 若商品缩略图不为空且原有缩略图不为空则删除原有缩略图并添加 if (thumbnail != null) { // 先获取一遍原有信息,因为原有的信息里有原有图片地址 Product tempProduct = productDao.queryProductById(product.getProductId()); if (tempProduct.getImgAddr() != null) { ImageUtil.deleteFileOrPath(tempProduct.getImgAddr()); } addThumbnail(product, thumbnail); } // 如果有新存入的商品详情图, 则将原先的删除,并添加新的图片 if (productImgHolderList != null && productImgHolderList.size() > 0) { deleteProductImgList(product.getProductId()); addProductImgList(product, productImgHolderList); } try { // 更新商品信息 int effectedNum = productDao.updateProduct(product); if (effectedNum <= 0) { throw new ProductOperationException("更新商品信息失败: "); } return new ProductExecution(ProductStateEnum.SUCCESS, product); } catch (Exception e) { throw new ProductOperationException("更新商品信息失败: " + e.toString()); } } else { return new ProductExecution(ProductStateEnum.EMPTY); } }
00 -
取名好好好难
2020-03-04
如果你是按照老师的视频敲的代码的话,那就是在后台的modifyProduct方法里,没有实现对enableStatus的操作,你自己加上去就好了
072020-03-16 -
翔仔
2020-02-04
同学好,异步方法跳出括号外面很正常呢,需要你在success里面设置断点看看是否进去,然后后台设置断点看看进success前有没有进入到后台,一步步调试看看。
032020-03-12
相似问题