辽宁网站建设多少钱中文wordpress网站模板下载

pingmian/2026/1/26 5:36:33/文章来源:
辽宁网站建设多少钱,中文wordpress网站模板下载,做网站的语言叫什么,wordpress模板函数一、在 Nodejs 中使用 Mongodb 在前面的博文我们给大家讲了如何使用命令操作 Mongodb#xff0c;这篇博文开始我们给大家讲解一 下如何使用 Nodejs 来操作 Mongodb 数据库 Nodejs 操作 mongodb 数据库官方文档#xff1a;https://www.mongodb.org.cn/drivers/5.html npm i…一、在 Nodejs 中使用 Mongodb 在前面的博文我们给大家讲了如何使用命令操作 Mongodb这篇博文开始我们给大家讲解一 下如何使用 Nodejs 来操作 Mongodb 数据库 Nodejs 操作 mongodb 数据库官方文档https://www.mongodb.org.cn/drivers/5.html npm install mongodb --save 或者 cnpm install mongodb --save 或者 yarn add mongodb二、Nodejs 连接 MongoDb 数据库 const MongoClient require(mongodb).MongoClient; const url mongodb://localhost:27017; // const url mongodb://admin:123456localhost:27017/; 有密码连接方式 const dbName itying; const client new MongoClient(url,{ useUnifiedTopology: true }); client.connect(function(err) { if(err){console.log(err); return; }console.log(连接成功); //获取 db 对象 const db client.db(dbName); });注意如果数据库开启了权限验证的话需要使用下面方式连接数据库 其中admin 表示用户名123456 表示密码 const url mongodb://admin:123456localhost:27017/;三、Nodejs 查找 MongoDb 数据库的数据 const MongoClient require(mongodb).MongoClient; const url mongodb://localhost:27017; const dbName itying; const client new MongoClient(url,{ useUnifiedTopology: true }); client.connect(function(err) { if(err){console.log(err); return; }const db client.db(dbName); //获取 db 对象 db.collection(user).find({}).toArray(function(err,data){ //查找 if(err){console.log(err); return; }console.log(data); client.close(); }) });四、Nodejs 给 MongoDb 增加数据 const MongoClient require(mongodb).MongoClient; const url mongodb://localhost:27017; const dbName itying; const client new MongoClient(url,{ useUnifiedTopology: true }); client.connect(function(err) { if(err){console.log(err); return; }//获取 db 对象 const db client.db(dbName); //新增数据 db.collection(user).insertOne({username:nodejs,age:10},(err,result){ if(err){console.log(err); return; }console.log(result); client.close(); }) });五、Nodejs 修改 MongoDb 数据 const MongoClient require(mongodb).MongoClient; const url mongodb://localhost:27017; // const url mongodb://admin:123456localhost:27017/; 有密码连接方式 const dbName itying; const client new MongoClient(url,{ useUnifiedTopology: true }); client.connect(function(err) { if(err){console.log(err); return; }const db client.db(dbName); //获取 db 对象 db.collection(user).updateOne({name:zhangsan},{$set:{age:50}},(err,result){ if(err){console.log(err); return; }console.log(result); client.close(); })});六、Nodejs 删除 MongoDb 数据 const {MongoClient,ObjectID} require(mongodb); const url mongodb://localhost:27017; const dbName itying; const client new MongoClient(url,{ useUnifiedTopology: true }); client.connect(function(err) { if(err){console.log(err); return; }//获取 db 对象 const db client.db(dbName); //删除数据 db.collection(user).deleteOne({ username : nodejs }, function(err, result) { if(err){ console.log(err); return; }console.log(result); client.close(); }); });七、完整代码 /* 1.引入mongodb */ // const MongoClient require(mongodb).MongoClient; const { MongoClient } require(mongodb);/* 2.定义数据库连接的地址 */ const url mongodb://admin:admin127.0.0.1:27017;/* 3.定义要操作的数据库 */ const dbName itying;/* 4.实例化MongoClient 传入数据库连接地址 */ const client new MongoClient(url, { useUnifiedTopology: true });/* 5.连接数据库 */ client.connect((err) {if (err) {console.log(数据库连接失败);return;}console.log(数据库连接成功);let db client.db(dbName);/* // 查找数据db.collection(user).find({ age: 20 }).toArray((err, data) {if (err) {console.log(err);return;}console.log(data);client.close();}) *//* // 增加数据db.collection(user).insertOne({ name: nodejs, age: 10 }, (err, result) {if (err) {console.log(err);return;}console.log(增加成功);console.log(result);// 6.操作数据库完毕以后一定要关闭数据库连接client.close();}) */// 修改数据/* db.collection(user).updateOne({name: xiaoli}, {$set:{age: 100}}, (err, data) {if (err) {console.log(err);return;}console.log(修改成功);console.log(data);client.close();})*//* // 删除一条数据db.collection(user).deleteOne({name: nodejs}, (err){if (err) {console.log(err);return;}console.log(删除一条数据成功);client.close();}) */// 删除多条数据db.collection(user).deleteMany({name: nodejs}, (err){if (err) {console.log(err);return;}console.log(删除多条数据成功);client.close();})}) 八、实战案例 浏览器发送get请求 访问 /register渲染出注册页面 浏览器发送post请求访问 /doRegister, 后端获取前端提交的表单数据然后将数据存入mongodb数据库中 浏览器发送get请求 访问 / 从mongodb数据库查询数据并渲染到前端页面上 app.js: const http require(http); const querystring require(querystring) const app require(./module/routes); const ejs require(ejs); const { MongoClient } require(mongodb); const url mongodb://admin:admin127.0.0.1:27017; const dbName itying;/* 4.实例化MongoClient 传入数据库连接地址 */ // const client new MongoClient(url, { useUnifiedTopology: true });// 注册web服务 http.createServer(app).listen(8081); // app.static(public); // 修改默认静态web目录 // 配置路由 app.get(/, function (req, res) {MongoClient.connect(url, { useUnifiedTopology: true }, (err, client) {/* 5.连接数据库 */client.connect((err) {if (err) {console.log(数据库连接失败);return;}console.log(数据库连接成功);let db client.db(dbName);// 查找数据db.collection(user).find({}).toArray((err, result) {if (err) {console.log(err);return;}console.log(result);client.close();ejs.renderFile(./views/index.ejs, {list: result}, (err, data) {res.send(data);})})})})})app.get(/register, function (req, res) {ejs.renderFile(./views/register.ejs,{}, (err, data) {res.send(data);}) })app.post(/doRegister, function (req, res) {let body querystring.parse(req.body)console.log(body)MongoClient.connect(url, { useUnifiedTopology: true }, (err, client) {if (err) {console.log(数据库连接失败);return;}console.log(数据库连接成功);let db client.db(dbName);db.collection(user).insertOne(body, (err, result) {if (err) {console.log(err);return;}console.log(添加数据成功);res.send(添加数据成功);})}) })console.log(Server running at http://127.0.0.1:8081/);routes.js: const url require(url) const path require(path) const fs require(fs)// 扩展res function changeRes(res) {res.send (data) {res.writeHead(200, { Content-Type: text/html;charsetutf-8 });res.end(data);} }// 根据后缀名获取文件类型 let getFileMime function (extname) {// 把异步读取文件方法改为同步读取文件方法let data fs.readFileSync(./data/mime.json);let mimeObj JSON.parse(data.toString())console.log(mimeObj[extname])return mimeObj[extname] }// 静态web服务的方法 function initStatic (req, res, staticPath){// 1. 获取地址console.log(req.url)let pathname url.parse(req.url).pathname// 默认加载index.htmlif (pathname /) {pathname /index.html} else {pathname pathname}// 获取路径中的后缀名let extname path.extname(pathname)// 2.通过fs模块读取文件try {// 把异步读取文件方法改为同步读取文件方法let data fs.readFileSync(./ staticPath pathname);if (data) {let mine getFileMime(extname)res.writeHead(200, { Content-Type: mine ;charsetutf-8 });res.end(data);}} catch (error) {} }let server () {let G {_get: {}, // 把get 和 post分开保存_post: {},staticPath: static // 静态资源web目录}let app function (req, res) {// 扩展res的方法changeRes(res)// 配置静态web服务器initStatic(req, res, G.staticPath)// 路由let pathname url.parse(req.url).pathname;// http://127.0.0.1:3000/login pathname /login// 获取请求类型let method req.method.toLowerCase()if (G[_ method][pathname]) {if (method get) {G[_ method][pathname](req, res); // 表示执行方法} else {// post 获取post的数据 把它绑定到req.body上let postData ;req.on(data, (chunk) {postData chunk;})req.on(end, () {console.log(postData)req.body postDataG._post[pathname](req, res); // 表示执行方法})}} else {res.writeHead(404, { Content-Type: text/html;charsetutf-8 });res.end(页面不存在);}}app.get function (string, callback) {// 注册方法G._get[string] callback/* G[/login] function(req, res) {res.send(hello world)}*/// console.log(get方法)}app.post function (string, callback) {// 注册方法G._post[string] callback}// 配置静态web服务目录app.static function (staticPath){G.staticPath staticPath}return app;} module.exports server() mime.json: { .323:text/h323 ,.3gp:video/3gpp ,.aab:application/x-authoware-bin ,.aam:application/x-authoware-map ,.aas:application/x-authoware-seg ,.acx:application/internet-property-stream ,.ai:application/postscript ,.aif:audio/x-aiff ,.aifc:audio/x-aiff ,.aiff:audio/x-aiff ,.als:audio/X-Alpha5 ,.amc:application/x-mpeg ,.ani:application/octet-stream ,.apk:application/vnd.android.package-archive ,.asc:text/plain ,.asd:application/astound ,.asf:video/x-ms-asf ,.asn:application/astound ,.asp:application/x-asap ,.asr:video/x-ms-asf ,.asx:video/x-ms-asf ,.au:audio/basic ,.avb:application/octet-stream ,.avi:video/x-msvideo ,.awb:audio/amr-wb ,.axs:application/olescript ,.bas:text/plain ,.bcpio:application/x-bcpio ,.bin :application/octet-stream ,.bld:application/bld ,.bld2:application/bld2 ,.bmp:image/bmp ,.bpk:application/octet-stream ,.bz2:application/x-bzip2 ,.c:text/plain ,.cal:image/x-cals ,.cat:application/vnd.ms-pkiseccat ,.ccn:application/x-cnc ,.cco:application/x-cocoa ,.cdf:application/x-cdf ,.cer:application/x-x509-ca-cert ,.cgi:magnus-internal/cgi ,.chat:application/x-chat ,.class:application/octet-stream ,.clp:application/x-msclip ,.cmx:image/x-cmx ,.co:application/x-cult3d-object ,.cod:image/cis-cod ,.conf:text/plain ,.cpio:application/x-cpio ,.cpp:text/plain ,.cpt:application/mac-compactpro ,.crd:application/x-mscardfile ,.crl:application/pkix-crl ,.crt:application/x-x509-ca-cert ,.csh:application/x-csh ,.csm:chemical/x-csml ,.csml:chemical/x-csml ,.css:text/css ,.cur:application/octet-stream ,.dcm:x-lml/x-evm ,.dcr:application/x-director ,.dcx:image/x-dcx ,.der:application/x-x509-ca-cert ,.dhtml:text/html ,.dir:application/x-director ,.dll:application/x-msdownload ,.dmg:application/octet-stream ,.dms:application/octet-stream ,.doc:application/msword ,.docx:application/vnd.openxmlformats-officedocument.wordprocessingml.document ,.dot:application/msword ,.dvi:application/x-dvi ,.dwf:drawing/x-dwf ,.dwg:application/x-autocad ,.dxf:application/x-autocad ,.dxr:application/x-director ,.ebk:application/x-expandedbook ,.emb:chemical/x-embl-dl-nucleotide ,.embl:chemical/x-embl-dl-nucleotide ,.eps:application/postscript ,.epub:application/epubzip ,.eri:image/x-eri ,.es:audio/echospeech ,.esl:audio/echospeech ,.etc:application/x-earthtime ,.etx:text/x-setext ,.evm:x-lml/x-evm ,.evy:application/envoy ,.exe:application/octet-stream ,.fh4:image/x-freehand ,.fh5:image/x-freehand ,.fhc:image/x-freehand ,.fif:application/fractals ,.flr:x-world/x-vrml ,.flv:flv-application/octet-stream ,.fm:application/x-maker ,.fpx:image/x-fpx ,.fvi:video/isivideo ,.gau:chemical/x-gaussian-input ,.gca:application/x-gca-compressed ,.gdb:x-lml/x-gdb ,.gif:image/gif ,.gps:application/x-gps ,.gtar:application/x-gtar ,.gz:application/x-gzip ,.h:text/plain ,.hdf:application/x-hdf ,.hdm:text/x-hdml ,.hdml:text/x-hdml ,.hlp:application/winhlp ,.hqx:application/mac-binhex40 ,.hta:application/hta ,.htc:text/x-component ,.htm:text/html ,.html:text/html ,.hts:text/html ,.htt:text/webviewhtml ,.ice:x-conference/x-cooltalk ,.ico:image/x-icon ,.ief:image/ief ,.ifm:image/gif ,.ifs:image/ifs ,.iii:application/x-iphone ,.imy:audio/melody ,.ins:application/x-internet-signup ,.ips:application/x-ipscript ,.ipx:application/x-ipix ,.isp:application/x-internet-signup ,.it:audio/x-mod ,.itz:audio/x-mod ,.ivr:i-world/i-vrml ,.j2k:image/j2k ,.jad:text/vnd.sun.j2me.app-descriptor ,.jam:application/x-jam ,.jar:application/java-archive ,.java:text/plain ,.jfif:image/pipeg ,.jnlp:application/x-java-jnlp-file ,.jpe:image/jpeg ,.jpeg:image/jpeg ,.jpg:image/jpeg ,.jpz:image/jpeg ,.js:application/x-javascript ,.jwc:application/jwc ,.kjx:application/x-kjx ,.lak:x-lml/x-lak ,.latex:application/x-latex ,.lcc:application/fastman ,.lcl:application/x-digitalloca ,.lcr:application/x-digitalloca ,.lgh:application/lgh ,.lha:application/octet-stream ,.lml:x-lml/x-lml ,.lmlpack:x-lml/x-lmlpack ,.log:text/plain ,.lsf:video/x-la-asf ,.lsx:video/x-la-asf ,.lzh:application/octet-stream ,.m13:application/x-msmediaview ,.m14:application/x-msmediaview ,.m15:audio/x-mod ,.m3u:audio/x-mpegurl ,.m3url:audio/x-mpegurl ,.m4a:audio/mp4a-latm ,.m4b:audio/mp4a-latm ,.m4p:audio/mp4a-latm ,.m4u:video/vnd.mpegurl ,.m4v:video/x-m4v ,.ma1:audio/ma1 ,.ma2:audio/ma2 ,.ma3:audio/ma3 ,.ma5:audio/ma5 ,.man:application/x-troff-man ,.map:magnus-internal/imagemap ,.mbd:application/mbedlet ,.mct:application/x-mascot ,.mdb:application/x-msaccess ,.mdz:audio/x-mod ,.me:application/x-troff-me ,.mel:text/x-vmel ,.mht:message/rfc822 ,.mhtml:message/rfc822 ,.mi:application/x-mif ,.mid:audio/mid ,.midi:audio/midi ,.mif:application/x-mif ,.mil:image/x-cals ,.mio:audio/x-mio ,.mmf:application/x-skt-lbs ,.mng:video/x-mng ,.mny:application/x-msmoney ,.moc:application/x-mocha ,.mocha:application/x-mocha ,.mod:audio/x-mod ,.mof:application/x-yumekara ,.mol:chemical/x-mdl-molfile ,.mop:chemical/x-mopac-input ,.mov:video/quicktime ,.movie:video/x-sgi-movie ,.mp2:video/mpeg ,.mp3:audio/mpeg ,.mp4:video/mp4 ,.mpa:video/mpeg ,.mpc:application/vnd.mpohun.certificate ,.mpe:video/mpeg ,.mpeg:video/mpeg ,.mpg:video/mpeg ,.mpg4:video/mp4 ,.mpga:audio/mpeg ,.mpn:application/vnd.mophun.application ,.mpp:application/vnd.ms-project ,.mps:application/x-mapserver ,.mpv2:video/mpeg ,.mrl:text/x-mrml ,.mrm:application/x-mrm ,.ms:application/x-troff-ms ,.msg:application/vnd.ms-outlook ,.mts:application/metastream ,.mtx:application/metastream ,.mtz:application/metastream ,.mvb:application/x-msmediaview ,.mzv:application/metastream ,.nar:application/zip ,.nbmp:image/nbmp ,.nc:application/x-netcdf ,.ndb:x-lml/x-ndb ,.ndwn:application/ndwn ,.nif:application/x-nif ,.nmz:application/x-scream ,.nokia-op-logo:image/vnd.nok-oplogo-color ,.npx:application/x-netfpx ,.nsnd:audio/nsnd ,.nva:application/x-neva1 ,.nws:message/rfc822 ,.oda:application/oda ,.ogg:audio/ogg ,.oom:application/x-AtlasMate-Plugin ,.p10:application/pkcs10 ,.p12:application/x-pkcs12 ,.p7b:application/x-pkcs7-certificates ,.p7c:application/x-pkcs7-mime ,.p7m:application/x-pkcs7-mime ,.p7r:application/x-pkcs7-certreqresp ,.p7s:application/x-pkcs7-signature ,.pac:audio/x-pac ,.pae:audio/x-epac ,.pan:application/x-pan ,.pbm:image/x-portable-bitmap ,.pcx:image/x-pcx ,.pda:image/x-pda ,.pdb:chemical/x-pdb ,.pdf:application/pdf ,.pfr:application/font-tdpfr ,.pfx:application/x-pkcs12 ,.pgm:image/x-portable-graymap ,.pict:image/x-pict ,.pko:application/ynd.ms-pkipko ,.pm:application/x-perl ,.pma:application/x-perfmon ,.pmc:application/x-perfmon ,.pmd:application/x-pmd ,.pml:application/x-perfmon ,.pmr:application/x-perfmon ,.pmw:application/x-perfmon ,.png:image/png ,.pnm:image/x-portable-anymap ,.pnz:image/png ,.pot,:application/vnd.ms-powerpoint ,.ppm:image/x-portable-pixmap ,.pps:application/vnd.ms-powerpoint ,.ppt:application/vnd.ms-powerpoint ,.pptx:application/vnd.openxmlformats-officedocument.presentationml.presentation ,.pqf:application/x-cprplayer ,.pqi:application/cprplayer ,.prc:application/x-prc ,.prf:application/pics-rules ,.prop:text/plain ,.proxy:application/x-ns-proxy-autoconfig ,.ps:application/postscript ,.ptlk:application/listenup ,.pub:application/x-mspublisher ,.pvx:video/x-pv-pvx ,.qcp:audio/vnd.qcelp ,.qt:video/quicktime ,.qti:image/x-quicktime ,.qtif:image/x-quicktime ,.r3t:text/vnd.rn-realtext3d ,.ra:audio/x-pn-realaudio ,.ram:audio/x-pn-realaudio ,.rar:application/octet-stream ,.ras:image/x-cmu-raster ,.rc:text/plain ,.rdf:application/rdfxml ,.rf:image/vnd.rn-realflash ,.rgb:image/x-rgb ,.rlf:application/x-richlink ,.rm:audio/x-pn-realaudio ,.rmf:audio/x-rmf ,.rmi:audio/mid ,.rmm:audio/x-pn-realaudio ,.rmvb:audio/x-pn-realaudio ,.rnx:application/vnd.rn-realplayer ,.roff:application/x-troff ,.rp:image/vnd.rn-realpix ,.rpm:audio/x-pn-realaudio-plugin ,.rt:text/vnd.rn-realtext ,.rte:x-lml/x-gps ,.rtf:application/rtf ,.rtg:application/metastream ,.rtx:text/richtext ,.rv:video/vnd.rn-realvideo ,.rwc:application/x-rogerwilco ,.s3m:audio/x-mod ,.s3z:audio/x-mod ,.sca:application/x-supercard ,.scd:application/x-msschedule ,.sct:text/scriptlet ,.sdf:application/e-score ,.sea:application/x-stuffit ,.setpay:application/set-payment-initiation ,.setreg:application/set-registration-initiation ,.sgm:text/x-sgml ,.sgml:text/x-sgml ,.sh:application/x-sh ,.shar:application/x-shar ,.shtml:magnus-internal/parsed-html ,.shw:application/presentations ,.si6:image/si6 ,.si7:image/vnd.stiwap.sis ,.si9:image/vnd.lgtwap.sis ,.sis:application/vnd.symbian.install ,.sit:application/x-stuffit ,.skd:application/x-Koan ,.skm:application/x-Koan ,.skp:application/x-Koan ,.skt:application/x-Koan ,.slc:application/x-salsa ,.smd:audio/x-smd ,.smi:application/smil ,.smil:application/smil ,.smp:application/studiom ,.smz:audio/x-smd ,.snd:audio/basic ,.spc:application/x-pkcs7-certificates ,.spl:application/futuresplash ,.spr:application/x-sprite ,.sprite:application/x-sprite ,.sdp:application/sdp ,.spt:application/x-spt ,.src:application/x-wais-source ,.sst:application/vnd.ms-pkicertstore ,.stk:application/hyperstudio ,.stl:application/vnd.ms-pkistl ,.stm:text/html ,.svg:image/svgxml ,.sv4cpio:application/x-sv4cpio ,.sv4crc:application/x-sv4crc ,.svf:image/vnd ,.svg:image/svgxml ,.svh:image/svh ,.svr:x-world/x-svr ,.swf:application/x-shockwave-flash ,.swfl:application/x-shockwave-flash ,.t:application/x-troff ,.tad:application/octet-stream ,.talk:text/x-speech ,.tar:application/x-tar ,.taz:application/x-tar ,.tbp:application/x-timbuktu ,.tbt:application/x-timbuktu ,.tcl:application/x-tcl ,.tex:application/x-tex ,.texi:application/x-texinfo ,.texinfo:application/x-texinfo ,.tgz:application/x-compressed ,.thm:application/vnd.eri.thm ,.tif:image/tiff ,.tiff:image/tiff ,.tki:application/x-tkined ,.tkined:application/x-tkined ,.toc:application/toc ,.toy:image/toy ,.tr:application/x-troff ,.trk:x-lml/x-gps ,.trm:application/x-msterminal ,.tsi:audio/tsplayer ,.tsp:application/dsptype ,.tsv:text/tab-separated-values ,.ttf:application/octet-stream ,.ttz:application/t-time ,.txt:text/plain ,.uls:text/iuls ,.ult:audio/x-mod ,.ustar:application/x-ustar ,.uu:application/x-uuencode ,.uue:application/x-uuencode ,.vcd:application/x-cdlink ,.vcf:text/x-vcard ,.vdo:video/vdo ,.vib:audio/vib ,.viv:video/vivo ,.vivo:video/vivo ,.vmd:application/vocaltec-media-desc ,.vmf:application/vocaltec-media-file ,.vmi:application/x-dreamcast-vms-info ,.vms:application/x-dreamcast-vms ,.vox:audio/voxware ,.vqe:audio/x-twinvq-plugin ,.vqf:audio/x-twinvq ,.vql:audio/x-twinvq ,.vre:x-world/x-vream ,.vrml:x-world/x-vrml ,.vrt:x-world/x-vrt ,.vrw:x-world/x-vream ,.vts:workbook/formulaone ,.wav:audio/x-wav ,.wax:audio/x-ms-wax ,.wbmp:image/vnd.wap.wbmp ,.wcm:application/vnd.ms-works ,.wdb:application/vnd.ms-works ,.web:application/vnd.xara ,.wi:image/wavelet ,.wis:application/x-InstallShield ,.wks:application/vnd.ms-works ,.wm:video/x-ms-wm ,.wma:audio/x-ms-wma ,.wmd:application/x-ms-wmd ,.wmf:application/x-msmetafile ,.wml:text/vnd.wap.wml ,.wmlc:application/vnd.wap.wmlc ,.wmls:text/vnd.wap.wmlscript ,.wmlsc:application/vnd.wap.wmlscriptc ,.wmlscript:text/vnd.wap.wmlscript ,.wmv:audio/x-ms-wmv ,.wmx:video/x-ms-wmx ,.wmz:application/x-ms-wmz ,.wpng:image/x-up-wpng ,.wps:application/vnd.ms-works ,.wpt:x-lml/x-gps ,.wri:application/x-mswrite ,.wrl:x-world/x-vrml ,.wrz:x-world/x-vrml ,.ws:text/vnd.wap.wmlscript ,.wsc:application/vnd.wap.wmlscriptc ,.wv:video/wavelet ,.wvx:video/x-ms-wvx ,.wxl:application/x-wxl ,.x-gzip:application/x-gzip ,.xaf:x-world/x-vrml ,.xar:application/vnd.xara ,.xbm:image/x-xbitmap ,.xdm:application/x-xdma ,.xdma:application/x-xdma ,.xdw:application/vnd.fujixerox.docuworks ,.xht:application/xhtmlxml ,.xhtm:application/xhtmlxml ,.xhtml:application/xhtmlxml ,.xla:application/vnd.ms-excel ,.xlc:application/vnd.ms-excel ,.xll:application/x-excel ,.xlm:application/vnd.ms-excel ,.xls:application/vnd.ms-excel ,.xlsx:application/vnd.openxmlformats-officedocument.spreadsheetml.sheet ,.xlt:application/vnd.ms-excel ,.xlw:application/vnd.ms-excel ,.xm:audio/x-mod ,.xml:text/plain,.xml:application/xml,.xmz:audio/x-mod ,.xof:x-world/x-vrml ,.xpi:application/x-xpinstall ,.xpm:image/x-xpixmap ,.xsit:text/xml ,.xsl:text/xml ,.xul:text/xul ,.xwd:image/x-xwindowdump ,.xyz:chemical/x-pdb ,.yz1:application/x-yz1 ,.z:application/x-compress ,.zac:application/x-zaurus-zac ,.zip:application/zip ,.json:application/json }

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/85613.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

一个网站备案两个域名吗wordpress 批量换

引用是一个变量,它引用其他变量的内存位置 int x 34; int &lRef x; 标识符 IRef 就是一个引用。在声明中,引用是通过 & 来指示的,出现在类型与变量的标识符之间,这种类型的引用称为左值引用左值看作是一个关联了名称的…

珍佰农 商城网站建设wordpress没有样式表

VueOpenLayers中文教程推荐,不同于OpenLayers官方文档使用htmljs原生原生教程,博主专栏包含大量vue整合案例和实际开发案例,非常适合地图开发小白快速入门。 vue整合OpenLayers6入门教程: 《VueOpenLayers入门教程汇总目录》vue整…

公司建设网站需要固定ip吗去哪个网站可以做写手

1.如何判断对象可以回收 1.1引用计数法 只要一个对象被其他对象所引用,就要让该对象的技术加1,某个对象不再引用其,则让它计数减1。当计数变为0时就可以作为垃圾被回收。 有一个弊端叫做循环引用,两个的引用计数都是1&#xff…

深圳快速网站制作哪家公司好泰安房产管理局官网

在之前的一篇文章(python网络编程-udp)中实现了一个简单的udp聊天器,只能在单线程下进行收发数据,在学习完多线程之后,实现一个能同时收发数据的udp聊天器。 说明: 编写一个有2个线程的程序线程1用来接收数…

台州网站策划项目建设综述

目录 一、彻底删除VMware 二、VMware-17虚拟机安装 三、MobaXterm 安装 四、Centos 发行版 7.9的安装 五、rockys 9.1的安装 六、ubuntu2204的安装 一、彻底删除VMware 在卸载VMware虚拟机之前,要先把与VMware相关的服务和进程终止 1. 在windows中按下【Windo…

码云pages做静态网站百度收录链接

一、准备知识 headless services一般结合StatefulSet来部署有状态的应用,比如kafka集群,mysql集群,zk集群等,也包括本文要部署的consul集群。 0、consul集群 consul集群的分布式协议算法采用的是raft协议,这意味着必…

扬州市城市建设监察支队网站赣县区建设局网站

遇到的问题: 在使用 RedisTemplate 连接 Redis 进行操作的时候,发生了如下报错: 测试代码为: 配置文件: 问题根源: redis没有添加端口映射解决方案: 删除原来的redis容器,添加新…

番禺网站建设gzhchl网站建设计划建议

typing Python的typing模块是Python 3.5版本引入的一个标准库,它提供了一种在Python代码中显式声明类型的方式,可以帮助开发人员更好地理解和使用Python的类型系统。 使用typing模块,您可以在函数、类、变量等地方添加类型注解,以…

企业网站设计好的缺点有哪些百度关键词排名联系方式

解析 熟练和固化在有些时候是等价的。 一个看起来喜闻乐见的模型。 n2n^2n2 信息量你在逗我… 结果是:点数 n2n^2n2 TLE,边数 n2n^2n2 AC。 一种之前所没有见过的打开方式。 还是考虑最小割模型,点 iii 向原点连一条 AiA_iAi​ 的边&#xf…

宁波网站建设高端莱芜有名的痞子是谁

一、常识理论题 1、 简述嵌入式操作系统有哪些,你用过哪几种,简述其特点、优势及劣势?(5分) 2、 请描述控制及提高嵌入式软件质量有哪些办法,在开发过程中怎么才能保证嵌入式软件的可靠性?(5分)…

电子商务网站平台建设策划做棋牌推广网站违反不

长期以来,周界防范安防系统在大型园区、工厂、社区、机场、火车站站台、重点单位等领域应用较为广泛和常见。随着AI人工智能等新兴技术的快速发展与落地应用,通过AI智能检测与视频智能分析技术,现代化的周界安防系统可以做到全天候快速、准确…

网站建设详情页打开全网搜索

minio sdk使用自签名https证书错误处理 1.问题描述1.1 报错日志1.2 maven 依赖配置1.3 当前spring MinioClient配置 2.问题分析3.问题解决3.1 使用受信任的证书3.2 忽略证书验证3.2.1 minio客户端3.2.2 minio sdk 忽略证书验证3.2.2.1 拓展: 补充minioclient请求日志 4. 问题总…

自适应网站建设哪家好试客网站 源码

1 知识图谱应用场景 1、数据可视化 2、基于图谱的问答系统 3、基于图谱的关系推理 4、便捷的关系查询,给模型提供更多数据特征 2 知识图谱的构建 非结构化数据源中的实体识别:一般来说是一个sequence labeling的任务。 非结构化数据源中的关系抽取&am…

网站编辑超链接怎么做越秀金融大厦地址

从 Windows Server 2008 开始,管理员可以选择安装具有特定功能但不包含任何不必要功能的 Windows Server 的最小安装服务器核心(Server Core),它为一些特定服务的正常运行提供了一个最小的环境,从而减少了其他服务和管理工具可能造成的***和风…

招聘网站开发工程师在线做爰视频网站

http://blog.csdn.net/vshuang/article/details/39647167 Android 内存管理 &Memory Leak & OOM 分析 单个应用可用的最大内存 Android设备出厂以后,java虚拟机对单个应用的最大内存分配就确定下来了,超出这个值就会OOM。这个属性值是定义在…

福州网站建设营销q479185700刷屏ssh wordpress

实验背景 某公司总部在厦门,北京、上海都有分部,网络结构如图所示: 一、网络连接描述: 厦门总部:内部网络使用SW1、SW2、SW3三台交换机,SW1为作为核心交换机,SW2、SW3作为接入层交换机&#x…

做移动网站开发做钓鱼网站会被抓判刑吗

分类:声卡驱动问题:设备管理器中声卡驱动安装不正确描述:电脑没有声音,有部分朋友是因为声卡驱动没有正确安装,除了我们常见到的设备管理器出现黄色感叹号之外,另一种情况就是让一般人很难发现的问题&#…

莱芜招聘的网站中国建筑装饰网 郭金辉

干程序这行比较辛苦的就是要随时更新自己的知识。闷~~为了让自己能够更加深入的学习GUN和LINUX。在简单了解了shell以后决定学习Python。--------&#xff0d…

网站开发的软件介绍建设微信商城网站的公司

广州大专自主招生有哪些学校自主招生又称自主选拔,是高校选拔录取工作改革的重要环节。包括国家重点大学自主招生与高职自主招生两大类。以下小编为大家整理了广州大专院校自主招生的学校,希望对大家有所帮助!广东专科自主招生学校名单1、广东…