1. 提交表單時 進行 兩次 提交html
答: 緣由: 將 按鈕 type設置 爲 submit ,若將type 設置爲 button 才正確。nginx
2. 使用 mybatis 自動 生成代碼時,數據表中外鍵需不須要 在 數據庫中指定出來,若是不指定出來,那麼須要怎麼查詢?數據庫
例如: 商品中 分類 是 外鍵,當須要根據類型進行查詢時應該怎麼查?
答: 表中不使用外鍵,先查出分類id,再根據 id 查出 商品 id.json
3. jsp 中 if標籤中運算:跨域
<input class="switch switch-anim" name="haschoice" type="checkbox" <c:if test="${haschoice==1}">checked</c:if> id="haschoice" >
4. 使用video.js進行視頻播放時,一直沒法下載視頻,mybatis
解決辦法:在nginx中配置跨域訪問 例子: xc-ui-pc-static-portal下video.htmlscors
#學成網媒體服務代理 server { listen 80; server_name video.xuecheng.com; location /video{ proxy_pass http://video_server_pool; add_header Access-Control-Allow-Origin $origin_list; add_header Access-Control-Allow-Credentials true; add_header Access-Control-Allow-Methods 'GET, POST, OPTIONS'; } } #學成網媒體服務代理 map $http_origin $origin_list{ default http://www.xuecheng.com ; "~http://www.xuecheng.com" http://www.xuecheng.com ; "~http://ucenter.xuecheng.com" http://ucenter.xuecheng.com ; "~http://video.xuecheng.com" http://video.xuecheng.com ; }