config.json 21.5 KB
Newer Older
F
feilong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725
{
  "export": [
    "server.json"
  ],
  "keywords": [],
  "children": [
    {
      "Flask简介": {
        "keywords": [],
        "children": [
          {
            "安装": {
              "keywords": [],
              "children": [
                {
                  "创建应用目录": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-56"
                  }
                },
                {
                  "虚拟环境": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-57"
                  }
                },
                {
                  "在Python 3中创建虚拟环境": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-58"
                  }
                },
                {
                  "在Python 2中创建虚拟环境": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-59"
                  }
                },
                {
                  "使用虚拟环境": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-60"
                  }
                },
                {
                  "使用pip安装Python包": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-61"
                  }
                }
              ],
              "node_id": "python-5-467"
            }
          },
          {
            "应用的基本结构": {
              "keywords": [],
              "children": [
                {
                  "初始化": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-62"
                  }
                },
                {
                  "路由和视图函数": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-63"
                  }
                },
                {
                  "一个完整的应用": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-64"
                  }
                },
                {
                  "Web开发服务器": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-65"
                  }
                },
                {
                  "动态路由": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-66"
                  }
                },
                {
                  "调试模式": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-67"
                  }
                },
                {
                  "命令行选项": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-68"
                  }
                },
                {
                  "请求–响应循环": {
                    "keywords": [],
                    "children": [
                      {
                        "应用和请求上下文": {
                          "keywords": [],
                          "children": [],
                          "node_id": "python-7-15"
                        }
                      },
                      {
                        "请求分派": {
                          "keywords": [],
                          "children": [],
                          "node_id": "python-7-16"
                        }
                      },
                      {
                        "请求对象": {
                          "keywords": [],
                          "children": [
                            {
                              "对象显示": {
                                "keywords": [],
                                "children": [],
                                "node_id": "python-8-0"
                              }
                            },
                            {
                              "有效创建大量对象": {
                                "keywords": [],
                                "children": [],
                                "node_id": "python-8-1"
                              }
                            },
                            {
                              "由字符串调用对象": {
                                "keywords": [],
                                "children": [],
                                "node_id": "python-8-2"
                              }
                            }
                          ],
                          "node_id": "python-7-17"
                        }
                      },
                      {
                        "请求钩子": {
                          "keywords": [],
                          "children": [],
                          "node_id": "python-7-18"
                        }
                      }
                    ],
                    "node_id": "python-6-69"
                  }
                },
                {
                  "Flask扩展": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-70"
                  }
                }
              ],
              "node_id": "python-5-468"
            }
          },
          {
            "模板": {
              "keywords": [],
              "children": [
                {
                  "Jinja2模板引擎": {
                    "keywords": [],
                    "children": [
                      {
                        "渲染模板": {
                          "keywords": [],
                          "children": [],
                          "node_id": "python-7-19"
                        }
                      },
                      {
                        "变量": {
                          "keywords": [],
                          "children": [
                            {
                              "匿名函数捕获变量值": {
                                "keywords": [],
                                "children": [],
                                "node_id": "python-8-3"
                              }
                            },
                            {
                              "访问闭包中定义的变量": {
                                "keywords": [],
                                "children": [],
                                "node_id": "python-8-4"
                              }
                            }
                          ],
                          "node_id": "python-7-20"
                        }
                      },
                      {
                        "控制结构": {
                          "keywords": [],
                          "children": [],
                          "node_id": "python-7-21"
                        }
                      }
                    ],
                    "node_id": "python-6-71"
                  }
                },
                {
                  "使用Flask-Bootstrap集成Bootstrap": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-72"
                  }
                },
                {
                  "自定义错误页面": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-73"
                  }
                },
                {
                  "链接": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-74"
                  }
                },
                {
                  "静态文件": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-75"
                  }
                },
                {
                  "使用Flask-Moment本地化日期和时间": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-76"
                  }
                }
              ],
              "node_id": "python-5-469"
            }
          },
          {
            "Web表单": {
              "keywords": [],
              "children": [
                {
                  "配置": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-77"
                  }
                },
                {
                  "表单类": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-5-1569"
                  }
                },
                {
                  "把表单渲染成HTML": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-5-1570"
                  }
                },
                {
                  "在视图函数中处理表单": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-80"
                  }
                },
                {
                  "重定向和用户会话": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-81"
                  }
                },
                {
                  "闪现消息": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-82"
                  }
                }
              ],
              "node_id": "python-5-470"
            }
          },
          {
            "数据库": {
              "keywords": [],
              "children": [
                {
                  "SQL数据库": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-83"
                  }
                },
                {
                  "NoSQL数据库": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-84"
                  }
                },
                {
                  "使用SQL还是NoSQL": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-85"
                  }
                },
                {
                  "Python数据库框架": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-86"
                  }
                },
                {
                  "使用Flask-SQLAlchemy管理数据库": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-87"
                  }
                },
                {
                  "定义模型": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-88"
                  }
                },
                {
                  "关系": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-89"
                  }
                },
                {
                  "数据库操作": {
                    "keywords": [],
                    "children": [
                      {
                        "创建表": {
                          "keywords": [],
                          "children": [],
                          "node_id": "python-7-22"
                        }
                      },
                      {
                        "插入行": {
                          "keywords": [],
                          "children": [],
                          "node_id": "python-7-23"
                        }
                      },
                      {
                        "修改行": {
                          "keywords": [],
                          "children": [],
                          "node_id": "python-7-24"
                        }
                      },
                      {
                        "删除行": {
                          "keywords": [],
                          "children": [],
                          "node_id": "python-7-25"
                        }
                      },
                      {
                        "查询行": {
                          "keywords": [],
                          "children": [],
                          "node_id": "python-7-26"
                        }
                      }
                    ],
                    "node_id": "python-6-90"
                  }
                },
                {
                  "在视图函数中操作数据库": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-91"
                  }
                },
                {
                  "集成Python shell": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-92"
                  }
                },
                {
                  "使用Flask-Migrate实现数据库迁移": {
                    "keywords": [],
                    "children": [
                      {
                        "创建迁移仓库": {
                          "keywords": [],
                          "children": [],
                          "node_id": "python-7-27"
                        }
                      },
                      {
                        "创建迁移脚本": {
                          "keywords": [],
                          "children": [],
                          "node_id": "python-7-28"
                        }
                      },
                      {
                        "更新数据库": {
                          "keywords": [],
                          "children": [],
                          "node_id": "python-7-29"
                        }
                      },
                      {
                        "添加几个迁移": {
                          "keywords": [],
                          "children": [],
                          "node_id": "python-7-30"
                        }
                      }
                    ],
                    "node_id": "python-6-93"
                  }
                }
              ],
              "node_id": "python-5-471"
            }
          },
          {
            "电子邮件": {
              "keywords": [],
              "children": [
                {
                  "电子邮件系统组件和协议": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-94"
                  }
                },
                {
                  "发送电子邮件": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-95"
                  }
                },
                {
                  "Python和SMTP": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-96"
                  }
                },
                {
                  "smtplib.SMTP类方法": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-97"
                  }
                },
                {
                  "交互式SMTP示例": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-98"
                  }
                },
                {
                  "SMTP的其他内容": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-99"
                  }
                },
                {
                  "接收电子邮件": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-100"
                  }
                },
                {
                  "POP和IMAP": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-101"
                  }
                },
                {
                  "交互式POP3示例": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-102"
                  }
                },
                {
                  "poplib.POP3类方法": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-103"
                  }
                },
                {
                  "客户端程序SMTP和POP3示例": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-104"
                  }
                },
                {
                  "交互式IMAP4示例": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-105"
                  }
                },
                {
                  "imaplib.IMAP4类中的常用方法": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-106"
                  }
                }
              ],
              "node_id": "python-5-472"
            }
          },
          {
            "大型应用的结构": {
              "keywords": [],
              "children": [
                {
                  "配置选项": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-107"
                  }
                },
                {
                  "应用包": {
                    "keywords": [],
                    "children": [
                      {
                        "使用应用工厂函数": {
                          "keywords": [],
                          "children": [],
                          "node_id": "python-7-31"
                        }
                      },
                      {
                        "在蓝本中实现应用功能": {
                          "keywords": [],
                          "children": [],
                          "node_id": "python-7-32"
                        }
                      }
                    ],
                    "node_id": "python-6-108"
                  }
                },
                {
                  "应用脚本": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-109"
                  }
                },
                {
                  "需求文件": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-110"
                  }
                },
                {
                  "单元测试": {
                    "keywords": [],
                    "children": [
                      {
                        "blog应用的代码审查": {
                          "keywords": [],
                          "children": [],
                          "node_id": "python-7-33"
                        }
                      }
                    ],
                    "node_id": "python-6-111"
                  }
                },
                {
                  "创建数据库": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-112"
                  }
                },
                {
                  "运行应用": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-113"
                  }
                }
              ],
              "node_id": "python-5-473"
            }
          }
        ],
        "node_id": "python-4-825"
      }
    },
    {
      "Flask安装配置": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-826"
      }
    },
    {
      "Flask实现HTTP请求与响应": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-827"
      }
    },
    {
      "Flask cookie与session": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-828"
      }
    },
    {
      "Flask模板": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-829"
      }
    },
    {
      "Flask提交表单": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-830"
      }
    },
    {
      "Flask数据库操作": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-831"
      }
    },
    {
      "Bootstrap-Flask": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-832"
      }
    },
    {
      "Flask开发REST Web服务": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-833"
      }
    },
    {
      "部署日志与安全": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-834"
      }
    },
    {
      "Flask开发案例": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-835"
      }
    }
  ],
  "node_id": "python-3-139"
}