在我的代码中,我需要使用json文件作为参数调用Web服务。
this.myWebService.call({“UserId”:“1”});
上面的行是我的webservice调用。这里UserId的值是动态的,例如userId是1或userId是2或3等等...我如何动态传递这个ID与我得到的值我的计划。
请帮忙。
答案 0 :(得分:0)
如果它有php那么我会做的
<script type="text/javascript">
var userId = <?php echo $user_id ?>;
this.webService.call("UserId": userId});
</script>
希望这有帮助!!!