enter python-m SimpleHTTPServer 8888 in windows cmd & access the local file how to check out this access
what should I do if I want to go back to the original interface after I visit the local file
enter python-m SimpleHTTPServer 8888 in windows cmd & access the local file how to check out this access
what should I do if I want to go back to the original interface after I visit the local file
command is followed by & to indicate that the process is running in the background. To end it, you need to find the PID, of the process and then end it through the Task Manager or other command tool.
here, the python process listens on port TCP 8888. You can find out the python process PID
with the following commandnetstat -n -a -o
it will output something similar to the following
Active Connections
Proto Local Address Foreign Address State PID
TCP 0.0.0.0:8888 0.0.0.0:0 LISTENING 10280
TCP 127.0.0.1:9036 0.0.0.0:0 LISTENING 3060
...
you can see that process 10280 is listening on TCP 8888 port, so you only need to open Task Manager to end process 10280.
or use the taskkill command, as follows
taskkill /PID 10280
< hr >
The URL of the home page is http://localhost:8888/
.Previous: Koa,webstorm reported an error
Next: On the problem of initializing fullpage multiple times
blog s article like function, like once + 1, use session to record the current user problem point is: if you like article 1, article 2 will indicate that it has been supported. The reason is to judge that session how to realize that articles cannot b...
Please tell me why chrome debugging js file breakpoint, then why walk to other js files inside? how to avoid this? ...
I recently made a known Flask project, but debugging is a headache. Every time I update the static files such as js scripts or css, and restart the Flask service, I refresh the page, but these files are not updated last time, and they need to be cleared ...
<html> <srcipt > 1 <srcipt > 2 .... < html> there must be no problem when loading. If I want to get a specified srcipt tag, I can get the element by getting the < script > array and then using the su...
how does the QQ WeChat group @ all women, get all women s information ...
I usually use int for storage. The unit of data storage is divided into points. For example, for goods worth one yuan, it is 100 in the database. I think it s simple and straightforward, and there s no need to think about compatibility or anything. ...
html html : The hyperlinks have become http: undefined? read the online changes are not successful. I don t know what s going on? ...
there is a ready-made CET-4 and CET-6 vocabulary on the Internet. Api can get words, translations, phonetic symbols and audio URLs through the vocabulary request. the local audio that Mini Program requests to save 500words at a time, there are three wa...
I want to transfer the array of objects to the background using post. This is how I pass it: Http({ method: POST , url: addGroup , data:qs.stringify({ list :this.excelData }) }) ...
one of the projects that I am very interested in learning node, recently is to make chat tools. at first, it established a socket connection between the server and the client, and then sent messages to each other. now I want to communicate between th...
Picture description I want to know why the item, can t be passed, that is, the item that the parent component gets in the loop, why can t it be passed to the child component? ...
...
...
as described in the question, how to implement in each language has been reported to the Shoushou Party! It is said that the hand-holding party or the problem is too stupid, but it does not explain the specific reason? ...
create a component and render it to the page: class person extends React.Component{ constructor(name,age) { this.name = name; this.age = age; } render(){ return( <div>{this.props.name}--{this.props...
I am doing the Titanic test and found that the meaning of such a code is not quite clear 1 Why is there a number in the first one, please tell me what does it mean 2 Why? + means to repeat what does it mean by using two 3 regular expressions? Thank y...
novice, who is trying to write a project by himself with flask, uses bootstrap-select s drop-down multi-selection menu to pass parameters from the background to option display list. There is no problem with the multi-selection function, but he does ...
A Javascript generator function looks like this: def gen(n): for i in range(n): yield i >>> list(gen(10)) [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] python does not require additional identification when declaring. Just use yield directly. bot...
1. I am just a beginner of python, website content crawling classics processing as follows, temporarily do not understand Javascript, please help! $(function () { $( .port-box )["each"](function(wssP1, fnDKXroKU2) { var ClpoEy3 = $(fnD...
use tp5 to write a pageview function, each page refresh on + 1, offline local test is normal, put online, using the server s browser test is also + 1, offline access online is changed to each refresh + 4, with static variable test results executed only...