我正在研究angularjs1.6,我通过UI-SREF传递了13个参数。 例如: - a data-ui-sref =“editcomplaint({pcustomername:'{{t.CustomerName | uppercase}}',pcompanyname:'{{t.CompanyName}}',pproductsbought:'{{t.ProductsBought}}',pnoofqty : '{{t.Noofqty}}',pdateofpurchase: '{{t.DateofPurchase}}',pcostpaid: '{{t.CostPaid}}',paddress: '{{t.Address}}',PUNIT:” {{t.Unit}}',plocation:'{{t.Location}}',preason:'{{t.reason}}',pcomplaintno:'{{t.complaintno}}',peditcomplaint:'{{ 1}}',pcomplainttype:'{{t.ComplaintType}}'})“OPEN(当我点击此打开链接时,会传递上述参数。)
然后我像这样在Config文件中捕获这些参数 .STATE( 'editcomplaint',{ url:'/ editcomplaint /?pcustomername?pcompanyname?pproductsbought?pnoofqty?pdateofpurchase?pcostpaid?paddress?punit?plocation?preason?pcomplaintno?peditcomplaint?pcomplainttype',
但是当我在输出中看到它只显示10个参数时。
在输出屏幕中在上面的输出中,我无法看到preason和pcomplaintno参数。
如何解决这个问题?