excuse me: about the use of Hexo blog template variables. how do I call the variables provided by Hexo in the page javascript? Such as "page.title ". tried to use the interpolation method "{{}} " himself, but failed. also hope to get an answer, tha...
using the list of kafka and redis to do message queues, it is found that the throughput of kafka is higher than that of redis. Does that mean that kafka is faster than redis in queuing and dequeuing messages? That is, the time it takes to process a mess...
I have a total of five pages, using asynchronous route loading, the last four ways are as follows, so that each routing page is loaded on demand, so as not to load too slowly on the first screen. devstyle npm run buildwebpackvuecssimportcssindexcss ...
how to optimize readability and simplification, here are two pieces of code: the first paragraph of code const defaultObj = { content: { }, }; defaultObj.content.address = res.after.temporary.address.data; defaultObj.content.people = res.afte...
is a series, when I configure the tooltips, mouse hover to display data normally, the effect I need, such as a line chart, 10 points, I want to show 10 tooltips at the same time, when I click, hide a tips and then click to show, do not click, each poin...
learn the constructor and encounter the following code when doing exercises the code is as follows function Fn(){ return this; } Fn.prototype.getNum = function(){ console.log(3); }; new new Fn().getNum (); Why is the output 3? what I under...