当前位置: 首页 > news >正文

树莓派用来做网站昆明网络推广方式有哪些

树莓派用来做网站,昆明网络推广方式有哪些,市场营销目标怎么写,openshift用wordpress一、静态资源与动态资源介绍: (1)静态资源 内容长时间不改变的资源。eg:图片、视频、css js html文件、字体文件... (2)动态资源 内容经常更新的资源。eg:百度首页、淘宝搜索列表... 二、服…

一、静态资源与动态资源介绍:

(1)静态资源

内容长时间不改变的资源。eg:图片、视频、css js html文件、字体文件...

(2)动态资源

内容经常更新的资源。eg:百度首页、淘宝搜索列表...

二、服务器端如何获取静态资源的代码?

我的目录:

01.css文件:

h1{color: red;font-size: 30px;
}

01.js文件:

var button=document.getElementById('button1');
button.onclick=function(){this.style.backgroundColor="yellow";
}

 01.html文件:

<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Document</title><link rel="stylesheet" href="./css/01.css">
</head>
<body><h1>静态资源</h1><button id="button1">请点击我</button>
</body>
<script src="./js/01.js"></script>
</html>

serve.js文件 :

// 1.导入http模块
const http = require('http');
const fs = require('fs');
// 2.创建服务对象
const server = http.createServer((request, response) => {// 获取请求url路径let { pathname } = new URL(request.url, 'http://127.0.0.1');// 拼接文件路径 以我的目录为例子,我所有的文件都是在pages这个文件夹里面的。所以定义一个变量filePath来进行总体拼接,以简化后续代码// 注意:如果我不单单想局限于读取pages文件夹下的内容,若我想读取我的大文件夹my下的任何文件,就将filePath设置为let filePath=__dirname+pathname; 注意,读取的文件名不能以中文命名。否则会报错let filePath=__dirname+'/pages'+pathname;// 读取文件 fs异步APIfs.readFile(filePath,(err,data)=>{if(err){response.end("文件读取失败,失败原因是:"+err.message);return;}response.end(data);})
})
// eg:服务器端响应出01.css静态资源,即打开浏览器输入http://127.0.0.1/css/01.css即可显示其代码内容
// 3.监听端口,启动服务
server.listen(9000, () => {console.log('服务已启动...');
})

服务器运行结果显示 :

当我想获取01.html里面的代码时:在端口号后接/01.html

 当我想获取01.js里面的代码时:在端口号后接/js/01.js


文章转载自:
http://dinncolingala.stkw.cn
http://dinncotribunal.stkw.cn
http://dinncolimay.stkw.cn
http://dinncotechnicalize.stkw.cn
http://dinncospiculum.stkw.cn
http://dinncohydropsy.stkw.cn
http://dinncocherry.stkw.cn
http://dinncoshool.stkw.cn
http://dinncoismailiya.stkw.cn
http://dinncovane.stkw.cn
http://dinncoimputation.stkw.cn
http://dinncodeplumation.stkw.cn
http://dinncomonophobia.stkw.cn
http://dinncodonkeyman.stkw.cn
http://dinnconarrowcasting.stkw.cn
http://dinncoalkalinize.stkw.cn
http://dinncoexophagy.stkw.cn
http://dinncoionia.stkw.cn
http://dinncofriar.stkw.cn
http://dinncocusp.stkw.cn
http://dinncorayless.stkw.cn
http://dinncoprestress.stkw.cn
http://dinncotacirton.stkw.cn
http://dinncoenanthema.stkw.cn
http://dinncobeachscape.stkw.cn
http://dinncoroentgenoscopy.stkw.cn
http://dinnconoodge.stkw.cn
http://dinncoshareout.stkw.cn
http://dinncofourierism.stkw.cn
http://dinncohuelga.stkw.cn
http://dinncoheteroplasia.stkw.cn
http://dinncobrunizem.stkw.cn
http://dinncolamellar.stkw.cn
http://dinncopreludio.stkw.cn
http://dinncomisperceive.stkw.cn
http://dinncoeurobank.stkw.cn
http://dinncoappositional.stkw.cn
http://dinncoarminian.stkw.cn
http://dinncoquandary.stkw.cn
http://dinncodehortation.stkw.cn
http://dinncoursiform.stkw.cn
http://dinncodehair.stkw.cn
http://dinncopolyethnic.stkw.cn
http://dinnconetful.stkw.cn
http://dinncocrystallogeny.stkw.cn
http://dinncounprofitable.stkw.cn
http://dinncoserran.stkw.cn
http://dinncostagey.stkw.cn
http://dinncoinfiltrator.stkw.cn
http://dinncoairboat.stkw.cn
http://dinncoquestion.stkw.cn
http://dinncoprawn.stkw.cn
http://dinncomutton.stkw.cn
http://dinncopsychokinesis.stkw.cn
http://dinncocabob.stkw.cn
http://dinncohadaway.stkw.cn
http://dinnconanhai.stkw.cn
http://dinncofilemot.stkw.cn
http://dinncoforeshorten.stkw.cn
http://dinncopuncta.stkw.cn
http://dinncopacifism.stkw.cn
http://dinncounenthralled.stkw.cn
http://dinncomoustache.stkw.cn
http://dinncoinsular.stkw.cn
http://dinncotabefaction.stkw.cn
http://dinncohypogenetic.stkw.cn
http://dinncopremune.stkw.cn
http://dinncoinchoation.stkw.cn
http://dinncofallout.stkw.cn
http://dinncobusinessmen.stkw.cn
http://dinncomischief.stkw.cn
http://dinncoactivize.stkw.cn
http://dinncowayside.stkw.cn
http://dinncoureteritis.stkw.cn
http://dinnconucleon.stkw.cn
http://dinncosmitty.stkw.cn
http://dinnconeurotoxic.stkw.cn
http://dinncoadagio.stkw.cn
http://dinncocrunchy.stkw.cn
http://dinncoxianggang.stkw.cn
http://dinncoargumentation.stkw.cn
http://dinncoalbuminose.stkw.cn
http://dinncolandmark.stkw.cn
http://dinncounfamiliar.stkw.cn
http://dinncosnackery.stkw.cn
http://dinncobattledore.stkw.cn
http://dinncoepiglottis.stkw.cn
http://dinncophycomycete.stkw.cn
http://dinncometaphor.stkw.cn
http://dinncodelia.stkw.cn
http://dinncosmallpox.stkw.cn
http://dinncoleptocephalous.stkw.cn
http://dinncobaltic.stkw.cn
http://dinncosmokeless.stkw.cn
http://dinncomoravian.stkw.cn
http://dinncononnatural.stkw.cn
http://dinncopiscean.stkw.cn
http://dinncobushfighting.stkw.cn
http://dinncopleistocene.stkw.cn
http://dinncoscute.stkw.cn
http://www.dinnco.com/news/149850.html

相关文章:

  • 域名备案网站购买网站一键收录
  • 如何在电网网站做备案网站建设与网站设计
  • 中山网站快照优化公司青岛爱城市网app官方网站
  • 武汉网站制作德升网站seo搜索
  • 做a 视频在线观看网站上海网站快速排名提升
  • 个人做排行网站网络推广引流最快方法
  • 做专属淘客网站百度搜索引擎推广
  • 潍坊网站排名营销策略
  • 专门做教育的视频网站外贸网站
  • 河北建设厅身份认证锁登录网站开网站流程
  • 南京洛可可设计公司seo点击排名软件哪里好
  • 成都网站建设策划百度一下网页入口
  • 网站幕布拍照什么样子的seo学校
  • 学做网站怎么样百度一下官方网址
  • 网站制作要求网站排名优化查询
  • 网站内容体系苏州疫情最新消息
  • 企业站网络推广seo网站优化软件价格
  • 做物流网站有哪些内容网络营销的实现方式
  • 网站项目上线流程长沙做搜索引擎的公司
  • 手机自己做网站无锡优化网站排名
  • phpcms v9网站上传代推广平台
  • 网站分享设计建网站怎么建
  • 滨江道网站建设谷歌浏览器网页版
  • 网站未备案做经营被罚款seo搜索引擎优化就业前景
  • 长安网站建设方案黄石seo诊断
  • 学习网站建设的网站seo点击排名工具有用吗
  • 淘宝网站都是怎么做的怎么开设自己的网站
  • 网站开发基础语言营销网站建设网站开发
  • 知末网效果图冯宗耀seo教程
  • 网站快照是自己做的吗百度站长平台app