首页 > 其他 > 详细

有关架构的若干思考

时间:2019-02-14 17:42:15      阅读:169      评论:0      收藏:0      [点我收藏+]

1、bootstrap3 和bootstrap4 有关panel的问题

bootstrap3的panel代码

<div class="panel panel-default">
  <div class="panel-heading">Panel heading without title</div>
  <div class="panel-body">
    Panel content
  </div>
</div>

bootstrap4的card代码

<div class="card" style="width: 18rem;">
  <img class="card-img-top" src="..." alt="Card image cap">
  <div class="card-body">
    <h5 class="card-title">Card title</h5>
    <p class="card-text">Some quick example text to build on the card title and make up the bulk of the card‘s content.</p>
    <a href="#" class="btn btn-primary">Go somewhere</a>
  </div>
</div>

如何异构?要进行封装和变体的要求。

2、bootstrap中按钮的问题。

<!-- Standard button -->
<button type="button" class="btn btn-default">(默认样式)Default</button>

<!-- Provides extra visual weight and identifies the primary action in a set of buttons -->
<button type="button" class="btn btn-primary">(首选项)Primary</button>

<!-- Indicates a successful or positive action -->
<button type="button" class="btn btn-success">(成功)Success</button>

<!-- Contextual button for informational alert messages -->
<button type="button" class="btn btn-info">(一般信息)Info</button>

<!-- Indicates caution should be taken with this action -->
<button type="button" class="btn btn-warning">(警告)Warning</button>

<!-- Indicates a dangerous or potentially negative action -->
<button type="button" class="btn btn-danger">(危险)Danger</button>

<!-- Deemphasize a button by making it look like a link while maintaining button behavior -->
<button type="button" class="btn btn-link">(链接)Link</button>
bootstrap中容易出现这种情况。
但是设计师的要求通常是
确认是一类按钮,新增是一类按钮,查询是一类按钮,而且和当前的不一样。

3、流程设计器的思路首先是一个流程一个流程的基本信息,流程的节点信息,通常是1:n的关系,但是1:n关系的1往往是比较详细的描述。
4、在数据库设计过程中,通过有服务器id和客户端id
5、webservice划的意义在于哪?
在tky

有关架构的若干思考

原文:https://www.cnblogs.com/sexintercourse/p/10375518.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!