资源描述:
《动态Web文档 毕业论文外文翻译》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、外文翻译DynamicWebDocumentsSofar,themodelwehaveusedisthatofFig.6-6:theclientsendsafilenametotheserver,whichthenreturnsthefile.IntheearlydaysoftheWeb,allcontentwas,infact,staticlikethis(justfiles).However,inrecentyears,moreandmorecontenthasbecomedynamic,thatis,generatedondemand,ratherthans
2、toredondisk.Contentgenerationcantakeplaceeitherontheserversideorontheclientside.Letusnowexamineeachofthesecasesinturn.Server-SideDynamicWebPageGenerationToseewhyserver-sidecontentgenerationisneeded,considertheuseofforms,asdescribedearlier.Whenauserfillsinaformandclicksonthesubmitbutto
3、n,amessageissenttotheserverindicatingthatitcontainsthecontentsofaform,alongwiththefieldstheuserfilledin.Thismessageisnotthenameofafiletoreturn.Whatisneededisthatthemessageisgiventoaprogramorscripttoprocess.Usually,theprocessinginvolvesusingtheuser-suppliedinformationtolookuparecordina
4、databaseontheserver'sdiskandgenerateacustomHTMLpagetosendbacktotheclient.Forexample,inane-commerceapplication,aftertheuserclicksonPROCEEDTOCHECKOUT,thebrowserreturnsthecookiecontainingthecontentsoftheshoppingcart,butsomeprogramorscriptontheserverhastobeinvokedtoprocessthecookieandgene
5、rateanHTMLpageinresponse.TheHTMLpagemightdisplayaformcontainingthelistofitemsinthecartandtheuser'slast-knownshippingaddressalongwitharequesttoverifytheinformationandtospecifythemethodofpayment.ThestepsrequiredtoprocesstheinformationfromanHTMLformareillustratedinFig.7-33.Figure7-33.Ste
6、psinprocessingtheinformationfromanHTMLform.ThetraditionalwaytohandleformsandotherinteractiveWebpagesisasystemcalledtheCGI(CommonGatewayInterface).ItisastandardizedinterfacetoallowWebserverstotalktoback-endprogramsandscriptsthatcanacceptinput(e.g.,fromforms)andgenerateHTMLpagesinrespon
7、se.Usually,theseback-endsarescriptswritteninthePerlscriptinglanguagebecausePerlscriptsareeasierandfastertowritethanprograms(atleast,ifyouknowhowtoprograminPerl).Byconvention,theyliveinadirectorycalledcgi-bin,whichisvisibleintheURL.Sometimesanotherscriptinglanguage,Python,isusedinstead
8、ofPer