This time I will bring you the elexpression in jsHow to make a non-empty judgment, and the el expression in js to make a non-empty judgmentWhat are the precautionsWhat are the following? This is a practical case, let’s take a look at it.
Note, what I want to talk about here is not the use of nested el expressions in jsp, but the use in js.
Scenario:
After the page jumps, use spring mvc to pass a json object to the front-end page. After getting it in js, do the processing.
Returned json object:
{"nodes":[{"contactmobile":"15922208502","orderno":"XNH31918062989476864"},{"id":"12198","group":"11","content":"把考虑考虑","modelname":"Company"}],"links":[{"target":"12198","id":"15016","relationType":"公司","source":"12194"}]}
var graph; var flag = "${empty jsonData}"; if(flag!="true"){ graph = eval('(' + '${jsonData}' + ')'); };
There is a note here:
When using el expressions in js, be sure to use quotation marks. If the returned json contains double quotes, then use single quotes to surround the el expression, otherwise, use double quotes.
In addition, pay attention to the writing method of using evalfunction to convert the json string into an object.
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!
Recommended reading:
Jump back to the homepage after sharing the page
The above is the detailed content of How to make non-empty judgment of el expression in js. For more information, please follow other related articles on the PHP Chinese website!