0
在我當前的代碼中發生了一些非常奇怪的事情。
所以我使用ng-repeat
基於對象的數組,這樣就創建幾個要素:
<a ng-repeat="report in reports" ng-href="#/report?report={{report.id}}+file=0" ></a>
我呈現的HTML看起來,只要我可以告訴正確這樣的:
<a ng-repeat="report in reports" ng-href="#/report?report=81+file=0"
class="ng-scope" href="#/report?report=81+file=0">
如果我現在點擊此鏈接,我被重定向到這樣一個網址:
[root-url]/index.php#/report?report=84%20file%3D0
當我真正當然希望能夠在這裏:
[root-url]/index.php#/report?report=84+file=0
爲什麼「+
」,第二個「=
」符號翻譯這樣一來,當它是正確的鏈接,HREF屬性?任何人都有這個相同的問題?任何想法我做錯了什麼?
謝謝,不知道爲什麼我沒有看到這個我自己。愚蠢的我 –