您好,登錄后才能下訂單哦!
在看react-native教程的時(shí)候,遇到要在手機(jī)端調(diào)試,需要api服務(wù)器,但是由于Node.js自己就作為服務(wù)器,沒有apache怎么解決這個(gè)問題,用apache和nginx也可以解決,但是有點(diǎn)復(fù)雜,我們就使用node已有的模塊解決這個(gè)問題.
//服務(wù)器端的代碼 var express = require('express'); var app = express(); // set up handlebars view engine var handlebars = require('express3-handlebars') .create({ defaultLayout:'main' }); app.engine('handlebars', handlebars.engine); app.set('view engine', 'handlebars'); app.set('port', process.env.PORT || 3000); app.use(express.static(__dirname + '/public')); var fortuneCookies = [ "Conquer your fears or they will conquer you.", "Rivers need springs.", "Do not fear what you don't know.", "You will have a pleasant surprise.", "Whenever possible, keep it simple.", ]; app.get('/', function(req, res) { res.render('home'); }); app.get('/about', function(req,res){ var randomFortune = fortuneCookies[Math.floor(Math.random() * fortuneCookies.length)]; res.render('about', { fortune: randomFortune }); }); // 404 catch-all handler (middleware) app.use(function(req, res, next){ res.status(404); res.render('404'); }); // 500 error handler (middleware) app.use(function(err, req, res, next){ console.error(err.stack); res.status(500); res.render('500'); }); app.listen(app.get('port'), function(){ console.log( 'Express started on http://localhost:' + app.get('port') + '; press Ctrl-C to terminate.' ); });
上面這段代碼在127.0.0.1:3000端口啟動(dòng)一個(gè)本地服務(wù)器,但是在手機(jī)端是不能訪問的.
我們?cè)賳?dòng)另一個(gè)node.js服務(wù)器來解決這個(gè)問題.
//proxy.js var http = require('http'), httpProxy = require('http-proxy'); //引入這個(gè)模塊 // 新建一個(gè)代理 Proxy Server 對(duì)象 var proxy = httpProxy.createProxyServer({}); // 捕獲異常 proxy.on('error', function (err, req, res) { res.writeHead(500, { 'Content-Type': 'text/plain' }); res.end('Something went wrong. And we are reporting a custom error message.'); }); // 另外新建一個(gè) HTTP 80 端口的服務(wù)器,也就是常規(guī) Node 創(chuàng)建 HTTP 服務(wù)器的方法。 // 在每次請(qǐng)求中,調(diào)用 proxy.web(req, res config) 方法進(jìn)行請(qǐng)求分發(fā) var server = require('http').createServer(function(req, res) { // 在這里可以自定義你的路由分發(fā) var host = req.headers.host, ip = req.headers['x-forwarded-for'] || req.connection.remoteAddress; console.log("client ip:" + ip + ", host:" + host); switch(host){ //意思是監(jiān)聽下面的ip地址,如果匹配就轉(zhuǎn)到 //127.0.0.1:3000地址 case '192.168.0.101:8080': //監(jiān)聽這個(gè)地址 //這個(gè)地址在window上用ipconfig查看,mac/linux用ifconfig查看 case 'bbs.aaaa.com': proxy.web(req, res, { target: 'http://127.0.0.1:3000' }); //轉(zhuǎn)到這個(gè)地址 break; default: res.writeHead(200, { 'Content-Type': 'text/plain' }); res.end('Welcome to my server!'); } }); console.log("listening on port 8080") server.listen(8080);
node proxy.js 以后啟動(dòng)了proxy服務(wù)器.可以通過電腦的ip地址訪問127.0.0.1的api路由了。
如果是使用nginx也可以達(dá)到要求,在mac上使用homebrew包管理相當(dāng)方便
bash下 安裝 brew install nginx
啟動(dòng) brew services start nginx
如果安裝了atom編輯器
bash在 直接 atom /usr/local/etc/nginx/nginx.conf 打開配置文件本分以后做出修改
下面是nginx.conf的配置文件
//nginx.conf #原來的文件另存后。直接使用下面內(nèi)容替換nginx.conf的內(nèi)容 events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' # '$status $body_bytes_sent "$http_referer" ' # '"$http_user_agent" "$http_x_forwarded_for"'; sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; server { listen 8080; #監(jiān)聽80880端口 server_name www.penguu.com 192.168.1.100; #這里是真機(jī)要訪問的地址。 # Mac 通過終端 ifconfig 查看。比如我查看的就是192.168.1.100 #手機(jī)訪問的接口就是 192.168.1.100:8080 #實(shí)際在23行監(jiān)聽的端口可以是80端口,由于瀏覽器默認(rèn)就是80端口。但是在mac中有權(quán)限問題。所#以就使用8080端口 # address_book中的service中的地址也要修改路徑是 # view/service.js->host,修改為 192.168.1.100:8080 #access_log /var/log/nginx/test.log; location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_set_header X-Nginx-Proxy true; proxy_set_header Connection ""; proxy_pass http://127.0.0.1:3000; # address_book的 server地址,就是本地node.js服務(wù)器的ip地址 #node.js默認(rèn)就是127.0.0.1 ,port:3000是在app.js中設(shè)定的??梢孕薷摹? } } }
以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。