久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

    <i id='Ancsf'><tr id='Ancsf'><dt id='Ancsf'><q id='Ancsf'><span id='Ancsf'><b id='Ancsf'><form id='Ancsf'><ins id='Ancsf'></ins><ul id='Ancsf'></ul><sub id='Ancsf'></sub></form><legend id='Ancsf'></legend><bdo id='Ancsf'><pre id='Ancsf'><center id='Ancsf'></center></pre></bdo></b><th id='Ancsf'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='Ancsf'><tfoot id='Ancsf'></tfoot><dl id='Ancsf'><fieldset id='Ancsf'></fieldset></dl></div>
      <bdo id='Ancsf'></bdo><ul id='Ancsf'></ul>

    1. <tfoot id='Ancsf'></tfoot>
      <legend id='Ancsf'><style id='Ancsf'><dir id='Ancsf'><q id='Ancsf'></q></dir></style></legend>

      <small id='Ancsf'></small><noframes id='Ancsf'>

      一個 RESTful 持久性解決方案,可用于 Backbone.js.

      A RESTful persistence solution usable with backbone.js... in PHP?(一個 RESTful 持久性解決方案,可用于 Backbone.js... 在 PHP 中?)
    2. <small id='Nwrlr'></small><noframes id='Nwrlr'>

        <i id='Nwrlr'><tr id='Nwrlr'><dt id='Nwrlr'><q id='Nwrlr'><span id='Nwrlr'><b id='Nwrlr'><form id='Nwrlr'><ins id='Nwrlr'></ins><ul id='Nwrlr'></ul><sub id='Nwrlr'></sub></form><legend id='Nwrlr'></legend><bdo id='Nwrlr'><pre id='Nwrlr'><center id='Nwrlr'></center></pre></bdo></b><th id='Nwrlr'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='Nwrlr'><tfoot id='Nwrlr'></tfoot><dl id='Nwrlr'><fieldset id='Nwrlr'></fieldset></dl></div>
        <legend id='Nwrlr'><style id='Nwrlr'><dir id='Nwrlr'><q id='Nwrlr'></q></dir></style></legend>

          <tbody id='Nwrlr'></tbody>
      1. <tfoot id='Nwrlr'></tfoot>
            <bdo id='Nwrlr'></bdo><ul id='Nwrlr'></ul>
                本文介紹了一個 RESTful 持久性解決方案,可用于 Backbone.js... 在 PHP 中?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                問題描述

                我先說我是一個蹩腳的程序員,我確信我想做的事情可以在 10 行 node 或 Rails 或其他東西中完成,但 PHP 是我可用的.

                I'll preface this with saying that I'm a crappy programmer, I'm sure that what I want to do could be done in 10 lines of node or Rails or something else, but PHP is what I have available.

                所以,我希望找到一個簡單的 PHP 庫,它將數據庫調用封裝在一個類似于 RESTful 模型的 API 中.

                So, I'm hoping to find a simple PHP library which wraps the database calls in an API that looks similar to the RESTful model.

                我在嘗試找到這樣的東西時收效甚微——搜索 PHP CRUDPHP REST 會出現無數個頁面,我不知道如何過濾它們.

                I've had little success trying to find such a thing -- searching for PHP CRUD or PHP REST turns up several zillion pages, and I've no idea how to filter through them.

                我真的想在這里保持簡單,我不想要像 Zend 之類的大框架.我在 Backbone 中處理的模型非常簡單.我只想將 GETs 發送到 /notes/3POSTs 到 /notes,等等,并讓 PHP 對數據庫做正確的事情.

                I'm really trying to keep things simple here, I don't want a big framework like Zend or something. The models I'm dealing with in Backbone are really simple. I just want to send GETs to, say, /notes/3 or POSTs to /notes, etc, and have PHP do the right thing to a database.

                也許我的要求太多了,但在我看來,這正是 Rails 等其他框架所提供的.有什么建議?TIA...

                Perhaps I'm asking too much, but it seems to me that this is what other frameworks like Rails provide. Any suggestions? TIA...

                推薦答案

                EDIT Nov 2018: 雖然我不會敲 CodeIgniter,但現在 Laravel(目前是5.5)是我使用的框架.

                EDIT Nov 2018: Although I wouldn't knock CodeIgniter, nowadays Laravel (currently 5.5) is the framework I use.

                這是一篇好文章總結總結我使用 Laravel 的原因.

                Here is a good article that sums up the reasons I use Laravel.

                要快速入門,我建議使用 Laracasts.這是一個訂閱視頻教程服務,深入介紹如何使用 Laravel(以及其他與 Web 開發相關的內容).

                To get jump started, I recommend Laracasts. It's a subscription video tutorial service that goes in depth on how to use Laravel (and other web dev related things).

                原始答案:

                Codeigniter 對我來說,是最簡單的類 Rails 框架.它很簡單,您可以輕松地從頭開始構建 CRUD 應用.

                Codeigniter, to me, is the easiest of the Rails-like frameworks. It's bare bones, and you can build a CRUD app from scratch easily.

                推出自己的應用的最大問題是安全性.Codeigniter 可以通過保護您免受許多常見的安全風險(例如直接使用 $_POST 數組,而不是正確過濾您的數據)來幫助您構建一個不易被黑客入侵的站點.更不用說它提供的許多幫助類,例如表單驗證.

                The biggest issue with rolling your own app is security. Codeigniter can help you build a less hackable site by shielding you from many of the common security risks, such as using $_POST arrays directly, and not properly filtering your data. Not to mention the many helper classes it offers such as form validation.

                您可以在他們的網站上查看文檔.只要您記住導航隱藏在每個頁面的頂部,它就非常易于使用.:D

                You can view the documentation on their website. It's very easy to use as long as you remember the navigation is hidden at the top of each page. :D

                這篇關于一個 RESTful 持久性解決方案,可用于 Backbone.js... 在 PHP 中?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                相關文檔推薦

                Deadlock exception code for PHP, MySQL PDOException?(PHP、MySQL PDOException 的死鎖異常代碼?)
                PHP PDO MySQL scrollable cursor doesn#39;t work(PHP PDO MySQL 可滾動游標不起作用)
                PHP PDO ODBC connection(PHP PDO ODBC 連接)
                Using PDO::FETCH_CLASS with Magic Methods(使用 PDO::FETCH_CLASS 和魔術方法)
                php pdo get only one value from mysql; value that equals to variable(php pdo 只從 mysql 獲取一個值;等于變量的值)
                MSSQL PDO could not find driver(MSSQL PDO 找不到驅動程序)
                      <tbody id='B137b'></tbody>

                      <bdo id='B137b'></bdo><ul id='B137b'></ul>

                      <small id='B137b'></small><noframes id='B137b'>

                      <i id='B137b'><tr id='B137b'><dt id='B137b'><q id='B137b'><span id='B137b'><b id='B137b'><form id='B137b'><ins id='B137b'></ins><ul id='B137b'></ul><sub id='B137b'></sub></form><legend id='B137b'></legend><bdo id='B137b'><pre id='B137b'><center id='B137b'></center></pre></bdo></b><th id='B137b'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='B137b'><tfoot id='B137b'></tfoot><dl id='B137b'><fieldset id='B137b'></fieldset></dl></div>
                      • <tfoot id='B137b'></tfoot>

                          <legend id='B137b'><style id='B137b'><dir id='B137b'><q id='B137b'></q></dir></style></legend>

                          主站蜘蛛池模板: 麻豆91精品91久久久 | 先锋资源吧 | 久久丝袜| 日韩av网址在线观看 | 精品一区二区电影 | 91精品久久久久久久久中文字幕 | 在线播放国产一区二区三区 | 欧美一区二区三区视频 | 久久久国产一区二区三区四区小说 | 中文字幕在线一区二区三区 | 欧美日韩国产精品一区 | 久久国产精品一区二区三区 | 天天躁日日躁狠狠躁2018小说 | 国产精品一区二 | 成年男女免费视频网站 | 婷婷色国产偷v国产偷v小说 | 国产精品日韩欧美一区二区 | 久久久久久91香蕉国产 | 欧美啪啪网站 | 男人天堂色 | 国产欧美日韩二区 | 亚洲乱码一区二区三区在线观看 | 欧美 视频 | jav成人av免费播放 | 91在线电影 | 毛片站| 欧美一区二区大片 | av一区二区三区 | 华人黄网站大全 | 欧美一二三四成人免费视频 | 久久99一区二区 | 亚洲第一视频网 | 国产精品国产精品国产专区不卡 | 91九色婷婷 | 欧美在线a | 成人毛片在线视频 | 日韩在线视频一区二区三区 | 91视频进入 | 欧美一级三级在线观看 | 免费看a| 欧美成人黄色小说 |