admin管理员组文章数量:1340287
This documentation is confusing.
It says, unbuffered code does not output any code directly. What does that mean?
But in general, what is the difference between buffered and unbuffered code?
Would also be nice if they didn't disable copy and right click on the page too!
This documentation is confusing.
It says, unbuffered code does not output any code directly. What does that mean?
But in general, what is the difference between buffered and unbuffered code?
Would also be nice if they didn't disable copy and right click on the page too!
Share Improve this question asked Nov 14, 2014 at 14:37 Ian WarburtonIan Warburton 15.7k24 gold badges117 silver badges208 bronze badges 1- maybe someone else is able to help you ;) – Max Bumaye Commented Nov 14, 2014 at 14:51
2 Answers
Reset to default 16"Unbuffered" means that the code is executed, but the results are not sent to the output buffer.
"Buffered" also means that the code is executed, and the results are sent to the output buffer.
For example, this Jade:
.unbuffered
- 'unbuffered vs buffered'
.buffered
= 'unbuffered vs buffered'
Produces this HTML:
<div class="unbuffered">
</div>
<div class="buffered">unbuffered vs buffered
</div>
Please ignore this answer as it is incorrect as pointed out in the ments
I invite you to have a look at matty's answer instead.
From what I understand in the documentation link you shared I'd say there is a major difference:
Unbuffered code is not executed when read, but deferred (it is looks like javascript), which means that the string is post processed.
It seems that they map the string to an internal routine, that is hybrid js + templating language.
Buffered code is on the other hand executed as javascript (first it is preprocessed to escape html). Though it seems to have a different behavior according to which code you put in there.
For example it is said that this:
p='Test' + ' concatenation'
Will result in Test concatenation
But now, you could do this:
p=(function() { return 'Does this really work ?! It seems so'; }())
It will result in Does this really work ?! It seems so
.
It simply evals your code and escapes the html.
本文标签: javascriptWhat is the difference between buffered and unbuffered codeStack Overflow
版权声明:本文标题:javascript - What is the difference between buffered and unbuffered code? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743627141a2512477.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论