我正在尝试使用验证插件动态构建一个远程验证器函数。但由于某种原因,它没有将JS转换为对象,而是将其视为字符串并嵌入双引号。
前:
我的PHP代码是:
$remoteUrl = '/test/checkusername';
$remoteValidatorJs = "{url: '". $remoteUrl . "',
type: 'post',
async:false,
dataType: 'html',
beforeSend: function(){
alert('Validating Form Field');
},
complete: function(){
alert('Completed Validation of Form Field');
},
dataFilter: function(html) {
return html;
}
}";
$validation[ 'rules' ][ 'Name' ][ 'remote' ] = $remoteValidatorJs;
如何在$remoteValidatorJs
变量中构造或转换JS,这样,当打印数组时,它最终看起来像下面“远程”部分中的内容:
$("#testForm").validate( {
"rules":{
"Name":{
"remote":{
url: '/test/checkusername',
type: 'post',
async:false,
dataType: 'html',
beforeSend: function(){
alert('Validating Form Field');
},complete: function(){
alert('Completed Validation of Form Field');
},
dataFilter: function(html) {
return html;
}
}
}
}
} );
谢谢,
答案 0 :(得分:2)
JSON是javascript的一个子集,您的示例不是有效的JSON,因为它是一个javascript字符串。
评估它的唯一方法是使用Function或eval
但是在不知道你想要解决的问题的情况下,我怀疑是否能够解决字符串问题。
使用包含带有函数的javascript对象文字的字符串,以下内容可行。 PS我没有使用你的整个字符串:)
var remoteUrl = "http://something.com";
var evalString =
[
'{url:"' + remoteUrl + '",',
'type:"post",',
'async:false}'
].join('')
evalString #// => "{url:"http://something.com",type:"post",async:false}"
var x= new Function("return " + evalString + ";")()
#// => Object
async: false
type: "post"
url: "http://something.com"