-3

我得到一个这样的字符串。
我做了 type of ,我把它当作string
字符串非常大,所以我发布了它的一部分。

[System.SelectOption[value="account__c", label="Account", disabled="false"], System.SelectOption[value="account_owner__c", label="Account Owner", disabled="false"], System.SelectOption[value="accountname__c", label="Business Name", disabled="false"]]

我需要的是一个 Json 或它的数组。请帮忙。

4

2 回答 2

2

这是你想要的?
此代码实质上将字符串转换为键值对数组。

JSFiddle 链接:http: //jsfiddle.net/Dap6C/2/

var x = '[System.SelectOption[value="account__c", label="Account", disabled="false"], System.SelectOption[value="account_owner__c", label="Account Owner", disabled="false"], System.SelectOption[value="accountname__c", label="Business Name", disabled="false"]]';

x = x.substring(0, x.length - 1).substring(1, x.length).replace(/System.SelectOption/g,"");
var xp = x.substring(0, x.length - 1).substring(1, x.length).replace(/, /g,",");
var y = xp.split('],[');

var mainarray = [];
for(var i=0;i<y.length;i++){
 var z = y[i].split(',');
    var elements = [];
    for(var j=0;j<z.length;j++){
        var m = z[j] ;
        m =m.split('=');
        elements[m[0]] = m[1];
    }
    mainarray.push(elements);
}

var samplelement = mainarray[0];
document.write("<b>Sample output saved as key-value pairs = </b><br/>"+ "<b>value is </b> " + samplelement.value +  "<b>and label is </b> "+ samplelement.label + ' ');
于 2013-02-28T17:42:44.710 回答
1

我知道这是旧的,我猜你已经解决了你的问题,但我只需要做类似的事情并给出这个 HTML 和 jQuery(只是因为):

<p><strong>Raw SF SelectOption data:</strong></p>
<div id="sfData"></div>
<p><strong>SF data converted to string with an array of objects using Regex:</strong></p>
<div id="sfDataToStr"></div>
<p><strong>SF data converted to proper array of Objects:</strong></p>
<div id="strToObj"></div>

而这个JavaScript:

var sfData = 
    '[System.SelectOption[value="-- None --", label="-- None --", disabled="false"],' + 
    ' System.SelectOption[value="Special 1", label="Special 1", disabled="false"],' + 
    ' System.SelectOption[value="Special 2", label="Special 2", disabled="false"],' + 
    ' System.SelectOption[value="Special 3", label="Special 3", disabled="false"]]';
$(function(){
    $("#sfData").
        append(sfData).
        prepend($("<p></p>", {
            "text": "TYPE: " + typeof sfData}));
    var sfDataToStr = sfData.
        replace(/System.SelectOption\[(\w+)=/g, "{\"$1\":").
        replace(/\],\s?/g, "},").
        replace(/\",\s?(\w+)=/g, "\",\"$1\":").
        replace(/\]\]/g, "}]");
    $("#sfDataToStr").
        append(sfDataToStr).
        prepend($("<p></p>", {
            "text": "TYPE: " + typeof sfDataToStr}));
    var strToObj = JSON.parse(sfDataToStr);
    $("#strToObj").
        append(JSON.stringify(strToObj)).
        prepend($("<p></p>", {
            "text": "TYPE: " + typeof strToObj}));
});

我设法以我乐于使用的形式获取数据。

我猜您是在呼应一组 SalesForce SelectOption 对象并希望在 JavaScript 中使用它们?我不确定 SalesForce 是否有一种本机方式来回显正确的 JSON,但这种方法适用于我的目的......希望它有所帮助。

工作 JSFiddle 链接:http: //jsfiddle.net/annoyingmouse/02668Ld4/

于 2015-06-23T12:04:33.863 回答