可以将多少个参数传递给angularjs 1.6的UI-SREF

时间:2018-05-15 12:14:57

标签: angularjs angular-ui-router

我正在研究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个参数时。

在输出屏幕中

http://localhost:6492/App/Login/Index.html#!/editcomplaint/?pcustomername=SDFSDF&pcompanyname=dsfds&pproductsbought=sdfds&pnoofqty=12&pdateofpurchase=2018-05-04T00:00:00&pcostpaid=22&punit=21&plocation=fdfdfd&peditcomplaint=1&pcomplainttype=Incorrect%20description%20of%20product

在上面的输出中,我无法看到preason和pcomplaintno参数。

如何解决这个问题?

0 个答案:

没有答案