response.write("..."); response.end( ); response.write("end 后面的语句");后面两个response什么意思?

来源:学生作业帮助网 编辑:作业帮 时间:2024/05/03 02:03:38
response.write(

response.write("..."); response.end( ); response.write("end 后面的语句");后面两个response什么意思?
response.write("..."); response.end( ); response.write("end 后面的语句");后面两个response什么意思?

response.write("..."); response.end( ); response.write("end 后面的语句");后面两个response什么意思?
response.end( ); 表示停止输出内容,后面写什么都不会输出到浏览器
即后面写的response.write("end 后面的语句"),”end 后面的语句“ 不会在浏览器中看到