Upgrade to Pro — share decks privately, control downloads, hide ads and more …

PHPconf 2013 - 寫好前端,不要搞瘋你的 PHP 後端工程師

winwu
October 08, 2013

PHPconf 2013 - 寫好前端,不要搞瘋你的 PHP 後端工程師

PHPconf 2013 Lighting Talk

winwu

October 08, 2013
Tweet

More Decks by winwu

Other Decks in Programming

Transcript

  1. •  怎麼⾯面對 400~500 多⼈人講 lighting talk… •  熟悉 LiveScript • 

    Joomla! Extension •  It邦幫忙 鐵⼈人賽進⾏行中… 近期研究….
  2. function display_list ( 要不要圖⽚片, 要不要rating,…){ /* 前端在 function 裡決定 顯⽰示邏輯判斷

    * html 結構, css class * 組 return 字串 * return html */ } 你要哪種 layout 我都有 echo display_list( $data_ary ) ; 右:圖⽚片來源:Line 貼圖
  3. 不⽤用⾃自⼰己組字串 <h1>’ . $v[‘conf_name’].’ </h1> (這是我的⼯工作…) 資料 (Array) 帶到 Helper

    即可 / 或者是使⽤用 Helper 的⼈人 透過設定決定 layout 樣式 Frontend Backend
  4. o  產出良好的 HTML 結構 o  ⾴頁⾯面元件模組化 o  減輕重構的負擔 o  re-use

    的思考模式 o  做出好⽤用的 helper for 後端⼯工程師 Better F2E