Request_URI显示html实体而不是&符号 - 无法识别GET参数

时间:2014-04-07 18:51:25

标签: php angularjs fullcalendar

我正在使用AngularJS v1.2.9运行FullCalendar。 uiConfig读到:

  $scope.uiConfig = {
calendar: {
  height: 400,
  width: 800,
  editable: false,
  events: 'calendardata.php',
  header: {
    left: 'month basicWeek basicDay agendaWeek agendaDay',
    center: 'title',
    right: 'today prev,next'
  },

电话失败了 - 我看着REQUEST_URI点击了MySQL服务器,发现了 '/calendardata.php?start = 1396162800& end = 1399791600& _ = 1396894998356' - &符号已转换为实体,因此无法识别GET变量。

两个系统都使用UTF-8。有没有人见过/解决过这个问题?感谢。

1 个答案:

答案 0 :(得分:0)

为我解决这个问题的解决方法是将值检索到作用域上的变量,然后改为引用该变量:

    $scope.uiConfig = {
  calendar: {
    height: 700,
    editable: false,
    events: $scope.eventSources,
    header: {
      left: 'month basicWeek basicDay',
      center: 'title',
      right: 'prev,today,next'
    },