在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → ntellij idea 来创建一个购物网站——易买网

ntellij idea 来创建一个购物网站——易买网

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:10.90M
  • 下载次数:61
  • 浏览次数:430
  • 发布时间:2021-02-08
  • 实例类别:一般编程问题
  • 发 布 人:好学IT男
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
使用Intellij idea 来创建一个购物网站——易买网 使用工具:Intellij idea 、MySQL、Navicat Premium、jdk1.8 使用框架:layui、spring mvc 模版:百里香叶 主要内容:1、前后台均有编写,通过对数据库查询对网页界面实现动态展示。 2、有购物车添加功能和近期浏览功能(通过缓存实现)。 3、能够实现购物车中物品数量的增加、减少和动态的显示根据物品的添加和减少的数量来调整价格。
【实例截图】
【核心代码】
605fb68b-f426-4643-a30d-7712007c2467
└── easybuy
├── easybuy.sql
└── sell
├── META-INF
│   └── MANIFEST.MF
├── mvnw
├── mvnw.cmd
├── pom.xml
├── sell.iml
├── src
│   ├── main
│   │   ├── java
│   │   │   └── ied
│   │   │   └── easy
│   │   │   ├── bean
│   │   │   │   ├── Comment.java
│   │   │   │   ├── News.java
│   │   │   │   ├── Order.java
│   │   │   │   ├── Page.java
│   │   │   │   ├── ProCategory.java
│   │   │   │   ├── Product.java
│   │   │   │   └── User.java
│   │   │   ├── mapper
│   │   │   │   ├── CommentMapper.java
│   │   │   │   ├── front_mapper
│   │   │   │   │   ├── FCommentMapper.java
│   │   │   │   │   ├── FNewsMapper.java
│   │   │   │   │   ├── FProCategoryMapper.java
│   │   │   │   │   └── FProductMapper.java
│   │   │   │   ├── NewsMapper.java
│   │   │   │   ├── OrderMapper.java
│   │   │   │   ├── ProCategoryMapper.java
│   │   │   │   ├── ProductMapper.java
│   │   │   │   └── UserMapper.java
│   │   │   ├── mvc
│   │   │   │   ├── CommentController.java
│   │   │   │   ├── front_mvc
│   │   │   │   │   └── IndexController.java
│   │   │   │   ├── NewsController.java
│   │   │   │   ├── OrderController.java
│   │   │   │   ├── ProCategoryController.java
│   │   │   │   ├── ProductController.java
│   │   │   │   └── UserController.java
│   │   │   ├── SellApplication.java
│   │   │   └── service
│   │   │   ├── CommentService.java
│   │   │   ├── front_service
│   │   │   │   ├── FCommentService.java
│   │   │   │   ├── FNewsService.java
│   │   │   │   ├── FProCategoryService.java
│   │   │   │   └── FProductService.java
│   │   │   ├── NewsService.java
│   │   │   ├── OrderService.java
│   │   │   ├── ProCategoryService.java
│   │   │   ├── ProductService.java
│   │   │   └── UserService.java
│   │   ├── resources
│   │   │   ├── application.yml
│   │   │   ├── mappings
│   │   │   │   ├── CommentMapper.xml
│   │   │   │   ├── front_mappings
│   │   │   │   │   ├── FCommentMapper.xml
│   │   │   │   │   ├── FNewsMapper.xml
│   │   │   │   │   ├── FProCategoryMapper.xml
│   │   │   │   │   └── FProductMapper.xml
│   │   │   │   ├── NewsMapper.xml
│   │   │   │   ├── OrderMapper.xml
│   │   │   │   ├── ProCategoryMapper.xml
│   │   │   │   ├── ProductMapper.xml
│   │   │   │   └── UserMapper.xml
│   │   │   ├── static
│   │   │   │   ├── css
│   │   │   │   │   ├── jsp_style.css
│   │   │   │   │   ├── login.css
│   │   │   │   │   ├── register.css
│   │   │   │   │   ├── style.css
│   │   │   │   │   └── style_front.css
│   │   │   │   ├── images
│   │   │   │   │   ├── 1.jpg
│   │   │   │   │   ├── add.backgroud.jpg
│   │   │   │   │   ├── bei.jpg
│   │   │   │   │   ├── bg.png
│   │   │   │   │   ├── button_backgroud.jpg
│   │   │   │   │   ├── dd_scroll.jpg
│   │   │   │   │   ├── dd_winOpen.jpg
│   │   │   │   │   ├── login_right.jpg
│   │   │   │   │   ├── logo.gif
│   │   │   │   │   ├── product
│   │   │   │   │   │   ├── 0.jpg
│   │   │   │   │   │   ├── 0_tiny.gif
│   │   │   │   │   │   ├── 10.jpg
│   │   │   │   │   │   ├── 11.jpg
│   │   │   │   │   │   ├── 12.jpg
│   │   │   │   │   │   ├── 13.jpg
│   │   │   │   │   │   ├── 14.jpg
│   │   │   │   │   │   ├── 15.jpg
│   │   │   │   │   │   ├── 16.jpg
│   │   │   │   │   │   ├── 17.jpg
│   │   │   │   │   │   ├── 18.jpg
│   │   │   │   │   │   ├── 19.jpg
│   │   │   │   │   │   ├── 1.jpg
│   │   │   │   │   │   ├── 20.jpg
│   │   │   │   │   │   ├── 21.jpg
│   │   │   │   │   │   ├── 22.jpg
│   │   │   │   │   │   ├── 2.jpg
│   │   │   │   │   │   ├── 3.jpg
│   │   │   │   │   │   ├── 4.jpg
│   │   │   │   │   │   ├── 5.jpg
│   │   │   │   │   │   ├── 6.jpg
│   │   │   │   │   │   ├── 7.jpg
│   │   │   │   │   │   ├── 8.jpg
│   │   │   │   │   │   └── 9.jpg
│   │   │   │   │   ├── register-right.png
│   │   │   │   │   ├── shopping.jpg
│   │   │   │   │   └── zhuce.jpg
│   │   │   │   ├── js
│   │   │   │   │   ├── add.js
│   │   │   │   │   ├── function.js
│   │   │   │   │   ├── index.js
│   │   │   │   │   └── jquery-3.2.0.min.js
│   │   │   │   ├── layui
│   │   │   │   │   ├── css
│   │   │   │   │   │   ├── layui.css
│   │   │   │   │   │   ├── layui.mobile.css
│   │   │   │   │   │   └── modules
│   │   │   │   │   │   ├── code.css
│   │   │   │   │   │   ├── laydate
│   │   │   │   │   │   │   ├── icon.png
│   │   │   │   │   │   │   └── laydate.css
│   │   │   │   │   │   └── layer
│   │   │   │   │   │   └── default
│   │   │   │   │   │   ├── icon-ext.png
│   │   │   │   │   │   ├── icon.png
│   │   │   │   │   │   ├── layer.css
│   │   │   │   │   │   ├── loading-0.gif
│   │   │   │   │   │   ├── loading-1.gif
│   │   │   │   │   │   └── loading-2.gif
│   │   │   │   │   ├── font
│   │   │   │   │   │   ├── iconfont.eot
│   │   │   │   │   │   ├── iconfont.svg
│   │   │   │   │   │   ├── iconfont.ttf
│   │   │   │   │   │   └── iconfont.woff
│   │   │   │   │   ├── globe.css
│   │   │   │   │   ├── images
│   │   │   │   │   │   └── face
│   │   │   │   │   │   ├── 0.gif
│   │   │   │   │   │   ├── 10.gif
│   │   │   │   │   │   ├── 11.gif
│   │   │   │   │   │   ├── 12.gif
│   │   │   │   │   │   ├── 13.gif
│   │   │   │   │   │   ├── 14.gif
│   │   │   │   │   │   ├── 15.gif
│   │   │   │   │   │   ├── 16.gif
│   │   │   │   │   │   ├── 17.gif
│   │   │   │   │   │   ├── 18.gif
│   │   │   │   │   │   ├── 19.gif
│   │   │   │   │   │   ├── 1.gif
│   │   │   │   │   │   ├── 20.gif
│   │   │   │   │   │   ├── 21.gif
│   │   │   │   │   │   ├── 22.gif
│   │   │   │   │   │   ├── 23.gif
│   │   │   │   │   │   ├── 24.gif
│   │   │   │   │   │   ├── 25.gif
│   │   │   │   │   │   ├── 26.gif
│   │   │   │   │   │   ├── 27.gif
│   │   │   │   │   │   ├── 28.gif
│   │   │   │   │   │   ├── 29.gif
│   │   │   │   │   │   ├── 2.gif
│   │   │   │   │   │   ├── 30.gif
│   │   │   │   │   │   ├── 31.gif
│   │   │   │   │   │   ├── 32.gif
│   │   │   │   │   │   ├── 33.gif
│   │   │   │   │   │   ├── 34.gif
│   │   │   │   │   │   ├── 35.gif
│   │   │   │   │   │   ├── 36.gif
│   │   │   │   │   │   ├── 37.gif
│   │   │   │   │   │   ├── 38.gif
│   │   │   │   │   │   ├── 39.gif
│   │   │   │   │   │   ├── 3.gif
│   │   │   │   │   │   ├── 40.gif
│   │   │   │   │   │   ├── 41.gif
│   │   │   │   │   │   ├── 42.gif
│   │   │   │   │   │   ├── 43.gif
│   │   │   │   │   │   ├── 44.gif
│   │   │   │   │   │   ├── 45.gif
│   │   │   │   │   │   ├── 46.gif
│   │   │   │   │   │   ├── 47.gif
│   │   │   │   │   │   ├── 48.gif
│   │   │   │   │   │   ├── 49.gif
│   │   │   │   │   │   ├── 4.gif
│   │   │   │   │   │   ├── 50.gif
│   │   │   │   │   │   ├── 51.gif
│   │   │   │   │   │   ├── 52.gif
│   │   │   │   │   │   ├── 53.gif
│   │   │   │   │   │   ├── 54.gif
│   │   │   │   │   │   ├── 55.gif
│   │   │   │   │   │   ├── 56.gif
│   │   │   │   │   │   ├── 57.gif
│   │   │   │   │   │   ├── 58.gif
│   │   │   │   │   │   ├── 59.gif
│   │   │   │   │   │   ├── 5.gif
│   │   │   │   │   │   ├── 60.gif
│   │   │   │   │   │   ├── 61.gif
│   │   │   │   │   │   ├── 62.gif
│   │   │   │   │   │   ├── 63.gif
│   │   │   │   │   │   ├── 64.gif
│   │   │   │   │   │   ├── 65.gif
│   │   │   │   │   │   ├── 66.gif
│   │   │   │   │   │   ├── 67.gif
│   │   │   │   │   │   ├── 68.gif
│   │   │   │   │   │   ├── 69.gif
│   │   │   │   │   │   ├── 6.gif
│   │   │   │   │   │   ├── 70.gif
│   │   │   │   │   │   ├── 71.gif
│   │   │   │   │   │   ├── 7.gif
│   │   │   │   │   │   ├── 8.gif
│   │   │   │   │   │   └── 9.gif
│   │   │   │   │   ├── lay
│   │   │   │   │   │   ├── dest
│   │   │   │   │   │   │   └── layui.all.js
│   │   │   │   │   │   └── modules
│   │   │   │   │   │   ├── code.js
│   │   │   │   │   │   ├── element.js
│   │   │   │   │   │   ├── flow.js
│   │   │   │   │   │   ├── form.js
│   │   │   │   │   │   ├── jquery.js
│   │   │   │   │   │   ├── laydate.js
│   │   │   │   │   │   ├── layedit.js
│   │   │   │   │   │   ├── layer.js
│   │   │   │   │   │   ├── laypage.js
│   │   │   │   │   │   ├── laytpl.js
│   │   │   │   │   │   ├── mobile.js
│   │   │   │   │   │   ├── tree.js
│   │   │   │   │   │   ├── upload.js
│   │   │   │   │   │   └── util.js
│   │   │   │   │   └── layui.js
│   │   │   │   └── scripts
│   │   │   │   ├── function.js
│   │   │   │   └── function-manage.js
│   │   │   └── templates
│   │   │   ├── classification_list_add.html
│   │   │   ├── classification_list.html
│   │   │   ├── classification_list_update.html
│   │   │   ├── front_tai
│   │   │   │   ├── guestbook.html
│   │   │   │   ├── index.html
│   │   │   │   ├── news-view.html
│   │   │   │   ├── product-list.html
│   │   │   │   ├── product-view.html
│   │   │   │   └── shopping.html
│   │   │   ├── goods_list_add.html
│   │   │   ├── goods_list.html
│   │   │   ├── goods_list_update.html
│   │   │   ├── login.html
│   │   │   ├── manage.html
│   │   │   ├── message_list.html
│   │   │   ├── message_list_update.html
│   │   │   ├── new_list_add.html
│   │   │   ├── new_list.html
│   │   │   ├── new_list_update.html
│   │   │   ├── order_list.html
│   │   │   ├── order_list_update.html
│   │   │   ├── register.html
│   │   │   ├── register_success.html
│   │   │   ├── user_list.html
│   │   │   └── user_update.html
│   │   └── webapp
│   │   └── uploads
│   │   ├── 0116c2bd-b176-48ee-94e9-90a170034946.jpg
│   │   ├── 12611e69-0976-41ee-b298-6c60c0740a66.jpg
│   │   ├── 36634e37-4a72-48fa-92f1-c93983c0fa7d.jpg
│   │   ├── 4f5df8c0-c4f2-4635-b262-81c6115dfe5e.jpg
│   │   ├── 609a9803-99f1-40a9-a204-1b54011ed950.jpg
│   │   ├── 70b8997b-1a38-42bd-bbca-d6a70f6913e1.jpg
│   │   ├── 7a1972f3-4a2e-42c7-a2a2-6cfe65378549.jpg
│   │   ├── 9fe40dd9-e8f9-43bd-b727-47694f780af3.jpg
│   │   ├── a39f41f1-6c5e-44df-a794-e8ba46137400.jpg
│   │   ├── c48568f7-4628-411e-b20b-13e14ede1db4.jpg
│   │   ├── c9a080e0-bf5e-43c5-bf62-540c7afc9610.jpg
│   │   └── f028c1b1-e096-403a-9018-879e9afc8f77.jpg
│   └── test
│   └── java
│   └── ied
│   └── easy
│   └── SellApplicationTests.java
└── target
├── classes
│   ├── application.yml
│   ├── ied
│   │   └── easy
│   │   ├── bean
│   │   │   ├── Comment.class
│   │   │   ├── News.class
│   │   │   ├── Order.class
│   │   │   ├── Page.class
│   │   │   ├── ProCategory.class
│   │   │   ├── Product.class
│   │   │   └── User.class
│   │   ├── mapper
│   │   │   ├── CommentMapper.class
│   │   │   ├── front_mapper
│   │   │   │   ├── FCommentMapper.class
│   │   │   │   ├── FNewsMapper.class
│   │   │   │   ├── FProCategoryMapper.class
│   │   │   │   └── FProductMapper.class
│   │   │   ├── NewsMapper.class
│   │   │   ├── OrderMapper.class
│   │   │   ├── ProCategoryMapper.class
│   │   │   ├── ProductMapper.class
│   │   │   └── UserMapper.class
│   │   ├── mvc
│   │   │   ├── CommentController.class
│   │   │   ├── front_mvc
│   │   │   │   └── IndexController.class
│   │   │   ├── NewsController.class
│   │   │   ├── OrderController.class
│   │   │   ├── ProCategoryController.class
│   │   │   ├── ProductController.class
│   │   │   └── UserController.class
│   │   ├── SellApplication.class
│   │   └── service
│   │   ├── CommentService.class
│   │   ├── front_service
│   │   │   ├── FCommentService.class
│   │   │   ├── FNewsService.class
│   │   │   ├── FProCategoryService.class
│   │   │   └── FProductService.class
│   │   ├── NewsService.class
│   │   ├── OrderService.class
│   │   ├── ProCategoryService.class
│   │   ├── ProductService.class
│   │   └── UserService.class
│   ├── mappings
│   │   ├── CommentMapper.xml
│   │   ├── front_mappings
│   │   │   ├── FCommentMapper.xml
│   │   │   ├── FNewsMapper.xml
│   │   │   ├── FProCategoryMapper.xml
│   │   │   └── FProductMapper.xml
│   │   ├── NewsMapper.xml
│   │   ├── OrderMapper.xml
│   │   ├── ProCategoryMapper.xml
│   │   ├── ProductMapper.xml
│   │   └── UserMapper.xml
│   ├── static
│   │   ├── css
│   │   │   ├── jsp_style.css
│   │   │   ├── login.css
│   │   │   ├── register.css
│   │   │   ├── style.css
│   │   │   └── style_front.css
│   │   ├── images
│   │   │   ├── 1.jpg
│   │   │   ├── add.backgroud.jpg
│   │   │   ├── bei.jpg
│   │   │   ├── bg.png
│   │   │   ├── button_backgroud.jpg
│   │   │   ├── dd_scroll.jpg
│   │   │   ├── dd_winOpen.jpg
│   │   │   ├── login_right.jpg
│   │   │   ├── logo.gif
│   │   │   ├── product
│   │   │   │   ├── 0.jpg
│   │   │   │   ├── 0_tiny.gif
│   │   │   │   ├── 10.jpg
│   │   │   │   ├── 11.jpg
│   │   │   │   ├── 12.jpg
│   │   │   │   ├── 13.jpg
│   │   │   │   ├── 14.jpg
│   │   │   │   ├── 15.jpg
│   │   │   │   ├── 16.jpg
│   │   │   │   ├── 17.jpg
│   │   │   │   ├── 18.jpg
│   │   │   │   ├── 19.jpg
│   │   │   │   ├── 1.jpg
│   │   │   │   ├── 20.jpg
│   │   │   │   ├── 21.jpg
│   │   │   │   ├── 22.jpg
│   │   │   │   ├── 2.jpg
│   │   │   │   ├── 3.jpg
│   │   │   │   ├── 4.jpg
│   │   │   │   ├── 5.jpg
│   │   │   │   ├── 6.jpg
│   │   │   │   ├── 7.jpg
│   │   │   │   ├── 8.jpg
│   │   │   │   └── 9.jpg
│   │   │   ├── register-right.png
│   │   │   ├── shopping.jpg
│   │   │   └── zhuce.jpg
│   │   ├── js
│   │   │   ├── add.js
│   │   │   ├── function.js
│   │   │   ├── index.js
│   │   │   └── jquery-3.2.0.min.js
│   │   ├── layui
│   │   │   ├── css
│   │   │   │   ├── layui.css
│   │   │   │   ├── layui.mobile.css
│   │   │   │   └── modules
│   │   │   │   ├── code.css
│   │   │   │   ├── laydate
│   │   │   │   │   ├── icon.png
│   │   │   │   │   └── laydate.css
│   │   │   │   └── layer
│   │   │   │   └── default
│   │   │   │   ├── icon-ext.png
│   │   │   │   ├── icon.png
│   │   │   │   ├── layer.css
│   │   │   │   ├── loading-0.gif
│   │   │   │   ├── loading-1.gif
│   │   │   │   └── loading-2.gif
│   │   │   ├── font
│   │   │   │   ├── iconfont.eot
│   │   │   │   ├── iconfont.svg
│   │   │   │   ├── iconfont.ttf
│   │   │   │   └── iconfont.woff
│   │   │   ├── globe.css
│   │   │   ├── images
│   │   │   │   └── face
│   │   │   │   ├── 0.gif
│   │   │   │   ├── 10.gif
│   │   │   │   ├── 11.gif
│   │   │   │   ├── 12.gif
│   │   │   │   ├── 13.gif
│   │   │   │   ├── 14.gif
│   │   │   │   ├── 15.gif
│   │   │   │   ├── 16.gif
│   │   │   │   ├── 17.gif
│   │   │   │   ├── 18.gif
│   │   │   │   ├── 19.gif
│   │   │   │   ├── 1.gif
│   │   │   │   ├── 20.gif
│   │   │   │   ├── 21.gif
│   │   │   │   ├── 22.gif
│   │   │   │   ├── 23.gif
│   │   │   │   ├── 24.gif
│   │   │   │   ├── 25.gif
│   │   │   │   ├── 26.gif
│   │   │   │   ├── 27.gif
│   │   │   │   ├── 28.gif
│   │   │   │   ├── 29.gif
│   │   │   │   ├── 2.gif
│   │   │   │   ├── 30.gif
│   │   │   │   ├── 31.gif
│   │   │   │   ├── 32.gif
│   │   │   │   ├── 33.gif
│   │   │   │   ├── 34.gif
│   │   │   │   ├── 35.gif
│   │   │   │   ├── 36.gif
│   │   │   │   ├── 37.gif
│   │   │   │   ├── 38.gif
│   │   │   │   ├── 39.gif
│   │   │   │   ├── 3.gif
│   │   │   │   ├── 40.gif
│   │   │   │   ├── 41.gif
│   │   │   │   ├── 42.gif
│   │   │   │   ├── 43.gif
│   │   │   │   ├── 44.gif
│   │   │   │   ├── 45.gif
│   │   │   │   ├── 46.gif
│   │   │   │   ├── 47.gif
│   │   │   │   ├── 48.gif
│   │   │   │   ├── 49.gif
│   │   │   │   ├── 4.gif
│   │   │   │   ├── 50.gif
│   │   │   │   ├── 51.gif
│   │   │   │   ├── 52.gif
│   │   │   │   ├── 53.gif
│   │   │   │   ├── 54.gif
│   │   │   │   ├── 55.gif
│   │   │   │   ├── 56.gif
│   │   │   │   ├── 57.gif
│   │   │   │   ├── 58.gif
│   │   │   │   ├── 59.gif
│   │   │   │   ├── 5.gif
│   │   │   │   ├── 60.gif
│   │   │   │   ├── 61.gif
│   │   │   │   ├── 62.gif
│   │   │   │   ├── 63.gif
│   │   │   │   ├── 64.gif
│   │   │   │   ├── 65.gif
│   │   │   │   ├── 66.gif
│   │   │   │   ├── 67.gif
│   │   │   │   ├── 68.gif
│   │   │   │   ├── 69.gif
│   │   │   │   ├── 6.gif
│   │   │   │   ├── 70.gif
│   │   │   │   ├── 71.gif
│   │   │   │   ├── 7.gif
│   │   │   │   ├── 8.gif
│   │   │   │   └── 9.gif
│   │   │   ├── lay
│   │   │   │   ├── dest
│   │   │   │   │   └── layui.all.js
│   │   │   │   └── modules
│   │   │   │   ├── code.js
│   │   │   │   ├── element.js
│   │   │   │   ├── flow.js
│   │   │   │   ├── form.js
│   │   │   │   ├── jquery.js
│   │   │   │   ├── laydate.js
│   │   │   │   ├── layedit.js
│   │   │   │   ├── layer.js
│   │   │   │   ├── laypage.js
│   │   │   │   ├── laytpl.js
│   │   │   │   ├── mobile.js
│   │   │   │   ├── tree.js
│   │   │   │   ├── upload.js
│   │   │   │   └── util.js
│   │   │   └── layui.js
│   │   └── scripts
│   │   ├── function.js
│   │   └── function-manage.js
│   └── templates
│   ├── classification_list_add.html
│   ├── classification_list.html
│   ├── classification_list_update.html
│   ├── front_tai
│   │   ├── guestbook.html
│   │   ├── index.html
│   │   ├── news-view.html
│   │   ├── product-list.html
│   │   ├── product-view.html
│   │   └── shopping.html
│   ├── goods_list_add.html
│   ├── goods_list.html
│   ├── goods_list_update.html
│   ├── login.html
│   ├── manage.html
│   ├── message_list.html
│   ├── message_list_update.html
│   ├── new_list_add.html
│   ├── new_list.html
│   ├── new_list_update.html
│   ├── order_list.html
│   ├── order_list_update.html
│   ├── register.html
│   ├── register_success.html
│   ├── user_list.html
│   └── user_update.html
└── test-classes
└── ied
└── easy
└── SellApplicationTests.class

80 directories, 464 files

标签:

实例下载地址

ntellij idea 来创建一个购物网站——易买网

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

第 1 楼 爱是冬季 发表于: 2021-12-14 18:17 48
怎么配置啊

支持(0) 盖楼(回复)

发表评论

(您的评论需要经过审核才能显示)

查看所有1条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警