我有一个javascript文件,它会将值发送到json文件中,其中包含c#和sql查询以从数据库中检索。
我已经确保已检索到该值,但我的查询并未提供任何结果。
JS:
$.postJSON('/path/path/html.aspx', {
action: 'myAction', id: $(this).val(), sectiontext: chosensection
}, function (j) {
//some func
});
});
这上面的代码在JS中将值发送到html.aspx,值肯定会发送。但是,当我在查询中使用它作为请求时[" chosensection"]它没有给出结果
当我使用与请求具有相同值的字符串时[" sectiontext"]给出结果。