请javascript高手看看,为什么声明函数中有两个参数,而函数体中只能用第二个参数
这是一个格式化的函数(网上都有,但不解function($,$1)为什么只能用$1,谢谢)functionjsonFormat(template,json){return...
这是一个格式化的函数(网上都有,但不解function($,$1)为什么只能用$1,谢谢)
function jsonFormat(template, json) {
return template.replace(//$/{(.+?)/}/g, function ($, $1) {
return json[$1];
});
} 展开
function jsonFormat(template, json) {
return template.replace(//$/{(.+?)/}/g, function ($, $1) {
return json[$1];
});
} 展开
展开全部
//第一个参数替换模板中花括符前面的$,第二个参数是替换 json 中字段名。如下范例:
var jsonObject={a:"......嗨!这是第一条数据。",b:",嗨!这是第二条数据,"}
var template='这是模板数据${a}模板数据内容。。。';
var s = jsonFormat(template,jsonObject);
alert(s);
修改一下源函数参数,然后测试下就明白了:
function jsonFormat(template, json) {
return template.replace(/\$\{(.+?)\}/g, function (aaaaaaa,bbbbb){
return json[bbbbb];
});
}
function jsonFormat(template, json) {
return template.replace(/\$\{(.+?)\}/g, function (XXX){
return json[XXX];
});
}
var jsonObject={a:"......嗨!这是第一条数据。",b:",嗨!这是第二条数据,"}
var template='这是模板数据${a}模板数据内容。。。';
var s = jsonFormat(template,jsonObject);
alert(s);
修改一下源函数参数,然后测试下就明白了:
function jsonFormat(template, json) {
return template.replace(/\$\{(.+?)\}/g, function (aaaaaaa,bbbbb){
return json[bbbbb];
});
}
function jsonFormat(template, json) {
return template.replace(/\$\{(.+?)\}/g, function (XXX){
return json[XXX];
});
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询