访问不了Youtube?
1.点击搭建自己的ss并开启bbr快速上网教程轻松访问1080p高清Youtube视频。
2.点击本节b站视频教程地址观看。
我们之前已经通过逆向工程获取到了 Product 这个实体类,那么我们在提交表单数据的时候,我们的标签 name 值需要和属性值对应起来。
1 2 3 4 5 6 7 8 9
| private Integer id; private Short categoryId; private String name; private String image; private Long maketPrice; private Long price; private Byte status; private String description; private String productNumber;
|
对于一些需要通过 js 获取的值,我们可以使用 hidden 属性的 input 标签来接收数据:
1 2 3
| <input type="hidden" name="categoryId" /> <input type="hidden" name="image" /> <input type="hidden" name="description" />
|
对于分类 id 的获取:
1 2 3 4 5 6 7 8 9 10 11 12
| $("#addProductForm").find("select[name='cid2']").combobox({ onChange: function() { var value=$("#cc2").val();
if(value == 0){ $("#addProductForm").find("input[name='categoryId']").val($("#addProductForm").find("input[name='cid1']").val()); }else{ $("#addProductForm").find("input[name='categoryId']").val(value); }
} });
|
对于图片路径的获取:
1 2 3 4
| success: function (data) { $("#img").attr("src", "http://65.49.227.129:8888/" + $(data).find("body").text()); $("#addProductForm").find("input[name='image']").val($(data).find("body").text()); }
|
对于商品描述的获取:
1
| UE.getEditor('editor').getContent()
|
form 表单提交:
1 2 3 4 5
| $.post("/product_save",$("#addProductForm").serialize(), function(data){ if(data.status == 200){ $.messager.alert('提示','新增商品成功!'); } });
|
Controller:
1 2 3 4 5 6
| @RequestMapping(value = "product_save",method = RequestMethod.POST) @ResponseBody public ResponseJsonResult saveProduct(Product product){ ResponseJsonResult responseJsonResult = productService.saveProduct(product); return responseJsonResult; }
|
SSM视频教程目录
在公众号「帅彬老仙」发送「帅书」领取我写的技术电子书,转载请注明出处:
wistbean