SharePoint REST API:复选框组和GET / POST的所有值

时间:2019-06-15 00:46:48

标签: jquery sharepoint sharepoint-rest-api

使用SharePoint REST API,具有一个Bootstrap / HTML表单,该表单包含大约20个问题,每个问题都有自己的复选框组,而我正在尝试从“已选中”框中获取和发布值。我可以发布群组的复选框值之一,但不能全部发布。

我也不确定如何在Get上选中复选框,例如,当用户打开现有记录的表单时,应该选中正确的复选框。

我尝试过的

var checkedV = $('input[name="q1error"]:checked').map(function() {
return $(this).value();
}).get();

'q1e': $('input:checkbox[name="q1error"]:checked').val()
'q1e':$('input[name="q1error"]').val(arrayValues)

HTML示例

<div class="form-group my-2">
    <label>1. Some question?</label>
    <div class="custom-control custom-radio">
        <input type="radio" class="custom-control-input qOne" id="q1y" name="q1" value="Yes"></input>
        <label class="custom-control-label" for="q1y">Yes</label>
    </div>
    <div class="custom-control custom-radio">
        <input type="radio" class="custom-control-input qOne" id="q1n" name="q1" value="No"></input>
        <label class="custom-control-label" for="q1n">No</label>
    </div>
    <div class="errorAll errorQone">
        <div class="mt-1 mb-1 qOneSub">If no, then identify which issues below</div>
        <div class="custom-control custom-checkbox mb-1 qOneSub">
            <input type="checkbox" class="custom-control-input" id="errorQ1a" name="q1error" value="a"></input>
            <label class="custom-control-label" for="errorQ1a">a</label>
        </div>
        <div class="custom-control custom-checkbox mb-1 qOneSub ">
            <input type="checkbox" class="custom-control-input" id="errorQ1b" name="q1error" value="b"></input>
            <label class="custom-control-label" for="errorQ1b">b</label>
        </div>
    </div>
</div>

0 个答案:

没有答案